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