'Declaration Public Overloads Function Find( _ ByVal value As Object, _ ByVal startIndex As Integer, _ ByVal columnName As String _ ) As Integer
'Usage Dim instance As WinComboBox Dim value As Object Dim startIndex As Integer Dim columnName As String Dim value As Integer value = instance.Find(value, startIndex, columnName)
public int Find( object value, int startIndex, string columnName )
Parameters
- value
- The value to find.
- startIndex
- The zero-based index at which to start searching.
- columnName
- The name of the column in which to search for value.
Return Value
The zero-based index of the first occurrence of value in columnName. If -1, the value was not found.