0 out of 1 rated this helpful - Rate this topic

CheckedListBox.CheckedItemCollection Class

Encapsulates the collection of checked items, including items in an indeterminate state, in a CheckedListBox control.

System.Object
  System.Windows.Forms.CheckedListBox.CheckedItemCollection

Namespace:  System.Windows.Forms
Assembly:  System.Windows.Forms (in System.Windows.Forms.dll)
public class CheckedItemCollection : IList, 
	ICollection, IEnumerable

The CheckedListBox.CheckedItemCollection type exposes the following members.

  Name Description
Public property Count Gets the number of items in the collection.
Public property IsReadOnly Gets a value indicating if the collection is read-only.
Public property Item Gets an object in the checked items collection.
Top
  Name Description
Public method Contains Determines whether the specified item is located in the collection.
Public method CopyTo Copies the entire collection into an existing array at a specified location within the array.
Public method Equals(Object) Determines whether the specified Object is equal to the current Object. (Inherited from Object.)
Protected method Finalize Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection. (Inherited from Object.)
Public method GetEnumerator Returns an enumerator that can be used to iterate through the CheckedItems collection.
Public method GetHashCode Serves as a hash function for a particular type. (Inherited from Object.)
Public method GetType Gets the Type of the current instance. (Inherited from Object.)
Public method IndexOf Returns an index into the collection of checked items.
Protected method MemberwiseClone Creates a shallow copy of the current Object. (Inherited from Object.)
Public method ToString Returns a string that represents the current object. (Inherited from Object.)
Top
  Name Description
Public Extension Method AsParallel Enables parallelization of a query. (Defined by ParallelEnumerable.)
Public Extension Method AsQueryable Converts an IEnumerable to an IQueryable. (Defined by Queryable.)
Public Extension Method Cast<TResult> Casts the elements of an IEnumerable to the specified type. (Defined by Enumerable.)
Public Extension Method OfType<TResult> Filters the elements of an IEnumerable based on a specified type. (Defined by Enumerable.)
Top
  Name Description
Explicit interface implemetation Private property ICollection.IsSynchronized For a description of this member, see ICollection.IsSynchronized.
Explicit interface implemetation Private property ICollection.SyncRoot For a description of this member, see ICollection.SyncRoot.
Explicit interface implemetation Private method IList.Add For a description of this member, see IList.Add.
Explicit interface implemetation Private method IList.Clear For a description of this member, see IList.Clear.
Explicit interface implemetation Private method IList.Insert For a description of this member, see Insert.
Explicit interface implemetation Private property IList.IsFixedSize For a description of this member, see IList.IsFixedSize.
Explicit interface implemetation Private method IList.Remove For a description of this member, see Remove.
Explicit interface implemetation Private method IList.RemoveAt For a description of this member, see RemoveAt.
Top

The checked items collection is a subset of all items in the CheckedListBox control; it contains only those items that are in a checked or indeterminate state.

The following table is an example of the indexed collection of items in the control (all items contained in the control).

Index

Item

Check State

0

object 1

Unchecked

1

object 2

Checked

2

object 3

Unchecked

3

object 4

Indeterminate

4

object 5

Checked

Based on the previous example, the following table shows the indexed collection of the checked items.

Index

Item

0

object 2

1

object 4

2

object 5

The CheckedListBox class has two members that allow you to access the stored indexes, the Item property and the IndexOf method.

Based on the previous example, a call to the Item property with a parameter value of 1 returns object 4. A call to IndexOf with a parameter of object 4 returns a value of 1.

The following example enumerates the checked items in the CheckedListBox.CheckedIndexCollection to see what check state an item is in. The example demonstrates using the GetItemCheckState method to set the check state of an item. The example also demonstrates using the CheckedIndices property to get the CheckedListBox.CheckedIndexCollection, and the CheckedItems property to get the CheckedListBox.CheckedItemCollection.

The first loop uses the GetItemCheckState method to get the CheckState of each checked item, given the index of the item. The second loop also uses GetItemCheckState, but uses the ListBox.ObjectCollection.IndexOf method to retrieve the index for the item.


private void WhatIsChecked_Click(object sender, System.EventArgs e) {
    // Display in a message box all the items that are checked.

    // First show the index and check state of all selected items.
    foreach(int indexChecked in checkedListBox1.CheckedIndices) {
        // The indexChecked variable contains the index of the item.
        MessageBox.Show("Index#: " + indexChecked.ToString() + ", is checked. Checked state is:" +
                        checkedListBox1.GetItemCheckState(indexChecked).ToString() + ".");
    }

    // Next show the object title and check state for each item selected.
    foreach(object itemChecked in checkedListBox1.CheckedItems) {

        // Use the IndexOf method to get the index of an item.
        MessageBox.Show("Item with title: \"" + itemChecked.ToString() + 
                        "\", is checked. Checked state is: " + 
                        checkedListBox1.GetItemCheckState(checkedListBox1.Items.IndexOf(itemChecked)).ToString() + ".");
    }

}


.NET Framework

Supported in: 4, 3.5, 3.0, 2.0, 1.1, 1.0

.NET Framework Client Profile

Supported in: 4, 3.5 SP1

Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows XP SP2 x64 Edition, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
Any public static (Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.
Did you find this helpful?
(1500 characters remaining)
Community Content Add
Annotations FAQ