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

FindStringExact() public method

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

Same methods

KryptonListBox::FindStringExact ( string str, int startIndex ) : int
KryptonListBox