Skip to main content
A newer version of this page is available. .

CheckedListBoxItemCollection Class

Represents the CheckedListBoxControl‘s item collection.

Namespace: DevExpress.XtraEditors.Controls

Assembly: DevExpress.XtraEditors.v18.1.dll

Declaration

[ListBindable(false)]
public class CheckedListBoxItemCollection :
    ListBoxItemCollection,
    IEnumerable<CheckedListBoxItem>,
    IEnumerable

The following members accept/return CheckedListBoxItemCollection objects:

Remarks

The CheckedListBoxItemCollection class represents a collection of items in the checked list box control. Methods provided by this class can be used to perform common collection operations such as adding new or deleting existing items. Individual items can be accessed using indexer notation via the CheckedListBoxItemCollection.Item property.

CheckedListBoxItemCollection objects can be accessed via the BaseCheckedListBoxControl.Items property.

The following code snippets (auto-collected from DevExpress Examples) contain references to the CheckedListBoxItemCollection class.

Note

The algorithm used to collect these code examples remains a work in progress. Accordingly, the links and snippets below may produce inaccurate results. If you encounter an issue with code examples below, please use the feedback form on this page to report the issue.

Inheritance

Object
CollectionBase
ListBoxItemCollection
CheckedListBoxItemCollection
See Also