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

BootstrapAccordionItemCollection.Add(String, String) Method

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

Namespace: DevExpress.Web.Bootstrap

Assembly: DevExpress.Web.Bootstrap.v19.1.dll

Declaration

public BootstrapAccordionItem Add(
    string text,
    string name
)

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.

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