Finds the first item after the given index which starts with the given string. The search is not case sensitive.
[Visual Basic] Overloads Public Function FindString( _ ByVal s As String, _ ByVal startIndex As Integer _ ) As Integer [C#] public int FindString( string s, int startIndex ); [C++] public: int FindString( String* s, int startIndex ); [JScript] public function FindString( s : String, startIndex : int ) : int;
The index of the first item that starts with the given string, or-1 if no match was found.
ListBox Class | ListBox Members | System.WinForms Namespace | ListBox.FindString Overload List