Skip to main content

BootstrapAccordionItemCollection.Add(String, String, String, String, String) Method

Adds a new 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.v23.2.dll

NuGet Package: DevExpress.Web.Bootstrap

Declaration

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

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.

iconCssClass String

A String value specifying the CSS class of the image displayed by the item. Initializes the item’s BootstrapAccordionItem.IconCssClass property.

navigateUrl String

A String value specifying the URL to which the browser navigates when the item is clicked. Initializes the item’s NavBarItem.NavigateUrl property.

target String

A String value which identifies the window or frame at which to target URL content when the item is clicked. Initializes the item’s NavBarItem.Target property.

Returns

Type Description
BootstrapAccordionItem

A BootstrapAccordionItem object representing the newly created item.

Remarks

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

See Also