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

GetItemCheckState() public method

Returns a value indicating the check state of the current item.
public GetItemCheckState ( int index ) : CheckState
index int The index of the item to get the checked value of.
return CheckState
        public CheckState GetItemCheckState(int index)
        {
            // Check index actually exists
            if ((index < 0) || (index >= Items.Count))
                throw new ArgumentOutOfRangeException("index", "index out of range");

            return CheckedItems.GetCheckedState(index);
        }
KryptonCheckedListBox