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