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

MenuItemCollection.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

Assembly: DevExpress.Web.v18.2.dll

Declaration

public MenuItem Add(
    string text,
    string name,
    string imageUrl
)

Parameters

Name Type Description
text String

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

name String

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

imageUrl String

A String value specifying the path to the image displayed by the item. Initializes the ImagePropertiesBase.Url property of the item’s MenuItem.Image.

Returns

Type Description
MenuItem

A MenuItem object representing the newly created menu item.

Remarks

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

See Also