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

MenuItemCollection.Add(String, String) Method

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

Namespace: DevExpress.Web

Assembly: DevExpress.Web.v19.1.dll

Declaration

public MenuItem Add(
    string text,
    string name
)

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 indentifies the created item. Initializes the item’s MenuItem.Name property.

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.

The following code snippets (auto-collected from DevExpress Examples) contain references to the Add(String, String) method.

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