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

FindString() public method

Finds the first item after the given index which starts with the given string. The search is not case sensitive.
public FindString ( string str, int startIndex ) : int
str string The String to search for.
startIndex int The zero-based index of the item before the first item to be searched. Set to -1 to search from the beginning of the control.
return int
        public int FindString(string str, int startIndex)
        {
            return _listBox.FindString(str, startIndex);
        }

Same methods

KryptonCheckedListBox::FindString ( string str ) : int
KryptonCheckedListBox