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

Select() public method

Selects a range of text in the control.
public Select ( int start, int length ) : void
start int The position of the first character in the current text selection within the text box.
length int The number of characters to select.
return void
        public void Select(int start, int length)
        {
            _comboBox.Select(start, length);
        }