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

GetItemChecked() public method

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