Skip to main content
A newer version of this page is available. .
Bar

BarSubItem(BarManager, String, Int32, BarItem[]) Constructor

Creates a new instance of the BarSubItem class with the predefined caption, image and collection of sub items.

Namespace: DevExpress.XtraBars

Assembly: DevExpress.XtraBars.v19.1.dll

Declaration

public BarSubItem(
    BarManager manager,
    string caption,
    int imageIndex,
    BarItem[] items
)

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 specifying the caption of the created item. This value is assigned to the BarItem.Caption property.

imageIndex Int32

An integer value specifying the zero-based index of the image displayed within links associated with the created item. This value is assigned to the BarItem.ImageIndex property.

items BarItem[]

An array of BarItem descendants representing the collection of sub items.

Remarks

Use this constructor to create a new link container item with the predefined caption, image and sub items collection. When the item is created, it is automatically appended to the BarManager.Items collection of the Bar Manager specified by the manager parameter.

The following code snippet (auto-collected from DevExpress Examples) contains a reference to the BarSubItem(BarManager, String, Int32, BarItem[]) constructor.

Note

The algorithm used to collect these code examples remains a work in progress. Accordingly, the links and snippets below may produce inaccurate results. If you encounter an issue with code examples below, please use the feedback form on this page to report the issue.

See Also