'Declaration Public Overloads Function Find( _ ByVal value As Object, _ ByVal columnName As String _ ) As Integer
'Usage Dim instance As WinComboBox Dim value As Object Dim columnName As String Dim value As Integer value = instance.Find(value, columnName)
public int Find( object value, string columnName )
Parameters
- value
- The value to find.
- columnName
- The names 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.