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

BootstrapMenuItemCollection.Add(String, String, String) Method

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

Namespace: DevExpress.Web.Bootstrap

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

Declaration

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

Parameters

Name Type Description
text String

A String value specifying the name which indentifies the created item. Initializes the item’s MenuItem.Name property.

name String

A String value specifying the name which indentifies the created item. Initializes the item’s MenuItem.Name property.

iconCssClass String

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

Returns

Type Description
BootstrapMenuItem

A BootstrapMenuItem object representing the newly created menu item.

Remarks

Use the Add method to add a new menu item with the specified settings to the BootstrapMenuItemCollection object.

See Also