Skip to main content
Bar

BarManagerCategoryCollection.AddRange(BarManagerCategory[]) Method

Adds an array of categories to the end of the collection.

Namespace: DevExpress.XtraBars

Assembly: DevExpress.XtraBars.v23.2.dll

NuGet Package: DevExpress.Win.Navigation

Declaration

public virtual void AddRange(
    BarManagerCategory[] categories
)

Parameters

Name Type Description
categories BarManagerCategory[]

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

Remarks

Categories are added to the collection in the order specified by their positions within the array.

Individual categories can be added to the collection using the BarManagerCategoryCollection.Add and BarManagerCategoryCollection.Insert methods. If you need to remove a category from the collection, use the BarManagerCategoryCollection.Remove method.

See Also