ComponentFactory.Krypton.Toolkit.KryptonCheckedListBox.FindStringExact C# (CSharp) Метод

FindStringExact() публичный Метод

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.
Результат int
        public int FindStringExact(string str)
        {
            return _listBox.FindStringExact(str);
        }

Same methods

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