| Method | Description |
|---|
| Add | When implemented by a class, adds an item to the IList. (Inherited from IList) |
| Clear | When implemented by a class, removes all items from the IList. (Inherited from IList) |
| Contains | Determines whether the CheckedListBox.CheckedItemCollection contains a specific item. |
| CopyTo | Copies the elements of the CheckedListBox.CheckedItemCollection to an Array starting at a particular Array index. |
| Equals | Overloaded. Compares two objects to determine if they are equal. (Inherited from Object) |
| GetEnumerator | Returns an enumerator that can be used to iterate through the CheckedItems collection. |
| GetHashCode | Serves as a hash function for a particular type, suitable for use in hashing algorithms and data structures like a hash table. (Inherited from Object) |
| GetType | Gets the Type of the current instance. (Inherited from Object) |
| IndexOf | Determines the index of a specific item in the CheckedListBox.CheckedItemCollection. |
| Insert | When implemented by a class, inserts an item to the IList at the specified position. (Inherited from IList) |
| ReferenceEquals | Determines whether the specified Object instances are the same instance. (Inherited from Object) |
| Remove | When implemented by a class, removes the first occurrence of a specific object from the IList. (Inherited from IList) |
| RemoveAt | When implemented by a class, removes the IList item at the specified index. (Inherited from IList) |
| System.Collections.IList.Add | Adds an item to the CheckedListBox.CheckedItemCollection. Always throws an exception. |
| System.Collections.IList.Clear | Removes all objects of the CheckedListBox.CheckedItemCollection instance. Always throws an exception. |
| System.Collections.IList.Insert | Inserts an item into the CheckedListBox.CheckedItemCollection at a specified index. Always throws an exception. |
| System.Collections.IList.Remove | Removes the first occurrence of a specific object from the CheckedListBox.CheckedItemCollection. Always throws an exception. |
| System.Collections.IList.RemoveAt | Removes the item at the specified index of the CheckedListBox.CheckedItemCollection instance. Always throws an exception. |
| ToString | Returns a String that represents the current Object. (Inherited from Object) |
| this[] | Gets or sets an object in the CheckedListBox.CheckedItemCollection. |