Skip to main content
Bar

BarSubItem(BarManager, String) Constructor

Creates a new instance of the BarSubItem object with the predefined caption.

Namespace: DevExpress.XtraBars

Assembly: DevExpress.XtraBars.v23.2.dll

NuGet Package: DevExpress.Win.Navigation

Declaration

public BarSubItem(
    BarManager manager,
    string caption
)

Parameters

Name Type Description
manager BarManager

A BarManager object specifying the Bar Manager that will own the created item. This value is assigned to the BarItem.Manager property.

caption String

A string value that specifies the caption of the created item. This value is assigned to the BarItem.Caption property.

Remarks

Use this constructor to create a new link container item at runtime. When an item is created, it is automatically added to the BarManager.Items collection of the Bar Manager specified by the manager parameter.

See Also