ComponentFactory.Krypton.Toolkit.KryptonCheckedListBox.GetItemChecked C# (CSharp) 메소드

GetItemChecked() 공개 메소드

Returns a value indicating whether the specified item is checked.
public GetItemChecked ( int index ) : bool
index int The index of the item.
리턴 bool
        public bool GetItemChecked(int index)
        {
            return (GetItemCheckState(index) != CheckState.Unchecked);
        }
KryptonCheckedListBox