ComponentFactory.Krypton.Toolkit.KryptonListBox.FindStringExact C# (CSharp) Method

FindStringExact() public method

Finds the first item after the specified index that matches the specified string.
public FindStringExact ( 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 FindStringExact(string str, int startIndex)
        {
            return _listBox.FindStringExact(str, startIndex);
        }

Same methods

KryptonListBox::FindStringExact ( string str ) : int
KryptonListBox