Skip to main content

BootstrapToolbarItemCollection.Add(String, String, String) Method

Adds a new item to the collection and specifies the item’s display text, name and associated image.

Namespace: DevExpress.Web.Bootstrap

Assembly: DevExpress.Web.Bootstrap.v23.2.dll

NuGet Package: DevExpress.Web.Bootstrap

Declaration

public BootstrapToolbarItem Add(
    string text,
    string name,
    string iconCssClass
)

Parameters

Name Type Description
text String

A String value specifying the item’s display text. Initializes the item’s MenuItem.Text property.

name String

A String value specifying the item’s display text. Initializes the item’s MenuItem.Text property.

iconCssClass String

A String value specifying the CSS class of the image displayed by the item. Initializes the item’s BootstrapToolbarItemBase.IconCssClass property.

Returns

Type Description
BootstrapToolbarItem

A BootstrapToolbarItem object representing the newly created item.

See Also