ComponentFactory.Krypton.Toolkit.KryptonCheckedListBox.FindString C# (CSharp) Method

FindString() public method

Finds the first item in the list box that starts with the specified string.
public FindString ( string str ) : int
str string The String to search for.
return int
        public int FindString(string str)
        {
            return _listBox.FindString(str);
        }

Same methods

KryptonCheckedListBox::FindString ( string str, int startIndex ) : int
KryptonCheckedListBox