Skip to main content

CheckedListBoxItemCollection.AddRange(CheckedListBoxItem[]) Method

Adds an array of items to the collection.

Namespace: DevExpress.XtraEditors.Controls

Assembly: DevExpress.XtraEditors.v23.2.dll

NuGet Package: DevExpress.Win.Navigation

Declaration

public void AddRange(
    CheckedListBoxItem[] items
)

Parameters

Name Type Description
items CheckedListBoxItem[]

An array of CheckedListBoxItem objects to be added to the collection.

Remarks

The AddRange method adds a group of existing checked list box items (CheckedListBoxItem) to the collection. Individual items can be added using the ListBoxItemCollection.Add method.

See Also