Skip to main content

GridControl.FindRowByValue(String, Object) Method

Searches for the value in the column and returns the handle of the corresponding row.

Namespace: DevExpress.Mobile.DataGrid

Assembly: DevExpress.Mobile.Grid.v18.2.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

Important

This documentation topic describes legacy technology. We no longer develop new functionality for the GridControl and suggest that you use the new DataGridView control instead.

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

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

See Also