Skip to main content

ImageListBoxItemCollection.AddRange(ImageListBoxItem[]) 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(
    ImageListBoxItem[] items
)

Parameters

Name Type Description
items ImageListBoxItem[]

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

Remarks

The AddRange method adds a group of items to the collection. Individual items can be added using the ListBoxItemCollection.Add method.

To remove an item, use the ListBoxItemCollection.Remove method.

See Also