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

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

Selects or clears the selection for the specified item in a KryptonCheckedListBox.
public SetSelected ( int index, bool value ) : void
index int The zero-based index of the item in a KryptonCheckedListBox to select or clear the selection for.
value bool true to select the specified item; otherwise, false.
Результат void
        public void SetSelected(int index, bool value)
        {
            _listBox.SetSelected(index, value);
        }
KryptonCheckedListBox