MenuItemCollection.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
Assembly: DevExpress.Web.v24.2.dll
NuGet Package: DevExpress.Web
#Declaration
public MenuItem Add(
string text,
string name,
string imageUrl,
string navigateUrl,
string target
)
#Parameters
Name | Type | Description |
---|---|---|
text | String | A String value specifying the menu item’s display text. Initializes the menu item’s Menu |
name | String | A String value specifying the name which indentifies the created item. Initializes the item’s Menu |
image |
String | A String value specifying the path to the image displayed by the item. Initializes the Image |
navigate |
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 Menu |
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 Menu |
#Returns
Type | Description |
---|---|
Menu |
A Menu |
#Remarks
Use the Add method to add a new menu item with the specified settings to the MenuItemCollection object.