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

BootstrapMenuItemCollection.Add(String, String, String, String, String) Method

Adds a new menu item to the collection and specifies the item’s display text, name, associated image and URL as well as the target of the URL content.

Namespace: DevExpress.Web.Bootstrap

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

Declaration

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

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.

navigateUrl String

A String value specifying the URL to which the browser navigates when the item’s text or associated image is clicked. Initializes the item’s MenuItem.NavigateUrl property.

target String

A String value which identifies the window or frame at which to target URL content when the item’s text or associated image is clicked. Initializes the item’s MenuItem.Target 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