GridControl.FindRowByValue(GridColumn, Object) Method
In This Article
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(
GridColumn column,
object value
)
#Parameters
Name | Type | Description |
---|---|---|
column | Grid |
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 Grid
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