[]
        
(Showing Draft Content)

C1.Win.List.C1Combo.FindStringExact

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)
Public Function FindStringExact(s As String) As Integer
Parameters
Type Name Description
string s
Returns
Type Description
int

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)
Public Function FindStringExact(s As String, startIndex As Integer, col As Integer) As Integer
Parameters
Type Name Description
string s
int startIndex
int col
Returns
Type Description
int

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)
Public Function FindStringExact(s As String, startIndex As Integer, field As String) As Integer
Parameters
Type Name Description
string s
int startIndex
string field
Returns
Type Description
int

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)
Public Function FindStringExact(s As String, startIndex As Integer) As Integer
Parameters
Type Name Description
string s
int startIndex
Returns
Type Description
int