ComponentFactory.Krypton.Toolkit.KryptonCheckedListBox.CheckedIndexCollection.this C# (CSharp) Method

this() public method

Gets or sets the item at the specified index.
public this ( int index ) : object
index int Item index.
return object
            public object this[int index]
            {
                get
                {
                    object entryObject = InnerArrayGetEntryObject(index, KryptonCheckedListBox.CheckedItemCollection._anyItemMask);
                    return InnerArrayIndexOfIdentifier(entryObject, 0);
                }

                set { throw new NotSupportedException("Read Only Collection"); }
            }