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

FindString() public method

Finds the first item in the combo box that starts with the specified string.
public FindString ( string str ) : int
str string The String to search for.
return int
        public int FindString(string str)
        {
            return _comboBox.FindString(str);
        }

Same methods

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