Skip to main content
A newer version of this page is available. .

DataControlBase.FindRowByValue(String, Object) Method

Searches for the value in the column and returns the handle of the corresponding row. This is a dependency property.

Namespace: DevExpress.Xpf.Grid

Assembly: DevExpress.Xpf.Grid.v18.2.Core.dll

Declaration

public int FindRowByValue(
    string fieldName,
    object value
)

Parameters

Name Type Description
fieldName String

A String value that specifies the field name of the column to be searched.

value Object

An object that is the search value.

Returns

Type Description
Int32

An integer value that is the handle of the corresponding row.

Remarks

If the value is not found, the FindRowByValue method returns DataControlBase.InvalidRowHandle.

If the column contains more than one search value, the FindRowByValue method returns the handle of the first corresponding row.

If the first parameter is set to String.Empty, the FindRowByValue method searches using the whole row value.

To learn more, see Obtaining Row Handles.

The following code snippets (auto-collected from DevExpress Examples) contain references to the FindRowByValue(String, Object) method.

Note

The algorithm used to collect these code examples remains a work in progress. Accordingly, the links and snippets below may produce inaccurate results. If you encounter an issue with code examples below, please use the feedback form on this page to report the issue.

See Also