Skip to main content
Bar

BarManagerCategoryCollection.Add(BarManagerCategory) Method

Adds the specified category to the end of the collection.

Namespace: DevExpress.XtraBars

Assembly: DevExpress.XtraBars.v23.2.dll

NuGet Package: DevExpress.Win.Navigation

Declaration

public virtual int Add(
    BarManagerCategory category
)

Parameters

Name Type Description
category BarManagerCategory

A BarManagerCategory object representing the category to be added.

Returns

Type Description
Int32

An integer value representing the added category’s zero-based index within the collection.

Remarks

Categories’ names should be unique. Otherwise, an argument exception will be raised when adding a category to a collection.

To add several categories at once, see the BarManagerCategoryCollection.AddRange method.

See Also