FindStringExact Method
FindStringExact(string)
Finds the first row index such that the cell text is exactly same with string s in the column specified by the DisplayMember property.
Declaration
public int FindStringExact(string s)
Parameters
Type |
Name |
Description |
string |
s |
|
Returns
FindStringExact(string, int, int)
Finds the first row index after startIndex such that the cell text is exactly same with string s in the given column.
Declaration
public int FindStringExact(string s, int startIndex, int col)
Parameters
Returns
FindStringExact(string, int, string)
Finds the first row index after startIndex such that the cell text is exactly same with string s in the given column.
Declaration
public int FindStringExact(string s, int startIndex, string field)
Parameters
Returns
FindStringExact(string, int)
Finds the first row index after startIndex such that the cell text is exactly same with string s in the column specified by the DisplayMember property.
Declaration
public int FindStringExact(string s, int startIndex)
Parameters
Type |
Name |
Description |
string |
s |
|
int |
startIndex |
|
Returns