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

SetSelected() public method

Selects or clears the selection for the specified item in a KryptonListBox.
public SetSelected ( int index, bool value ) : void
index int The zero-based index of the item in a KryptonListBox to select or clear the selection for.
value bool true to select the specified item; otherwise, false.
return void
        public void SetSelected(int index, bool value)
        {
            _listBox.SetSelected(index, value);
        }
KryptonListBox