Finds a row in this
C1DataView by the specified sort key value.
'Declaration
Public Overloads Function Find( _
ByVal As System.Object _
) As System.Integer
public System.int Find(
System.object
)
Parameters
- sortKey
- A sort key value to search. This value corresponds to the first column of sort key which is specified in the Sort property. If the System.Type of the value differs from the C1ViewColumn.DataType of the corresponding sort key column then this value will be converted to the column target type automatically. In the case where such a conversion is impossible an exception will be raised.
Return Value
An index of the row if it was found; otherwise a negative number, which is the bitwise complement of the index of the next row which key is larger than specified.