Skip to main content
Tab

NavBarItemCollection.Add(String, String, String) Method

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

Namespace: DevExpress.Web

Assembly: DevExpress.Web.v23.2.dll

NuGet Package: DevExpress.Web

Declaration

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

Parameters

Name Type Description
text String

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

name String

A String value specifying the name which indentifies the created item. Initializes the item’s NavBarItem.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 NavBarItem.Image.

Returns

Type Description
NavBarItem

A NavBarItem object representing the newly created item.

Remarks

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

See Also