ComponentFactory.Krypton.Toolkit.KryptonCheckedListBox.SetItemChecked C# (CSharp) Method

SetItemChecked() public method

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.
return void
        public void SetItemChecked(int index, bool value)
        {
            SetItemCheckState(index, value ? CheckState.Checked : CheckState.Unchecked);
        }
KryptonCheckedListBox