ComponentFactory.Krypton.Ribbon.KryptonRibbonGroupComboBox.FindStringExact C# (CSharp) Method

FindStringExact() public method

Finds the first item in the combo 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 _comboBox.FindStringExact(str);
        }

Same methods

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