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

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

Sets CheckState for the item at the specified index to Checked.
public SetItemChecked ( int index, bool value ) : void
index int The index of the item to set the check state for.
value bool true to set the item as checked; otherwise, false.
Результат void
        public void SetItemChecked(int index, bool value)
        {
            SetItemCheckState(index, value ? CheckState.Checked : CheckState.Unchecked);
        }
KryptonCheckedListBox