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

BootstrapAccordionGroupCollection.Add(String, String, String, String, String) Method

Adds a new group to the collection and specifies the group’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.v19.1.dll

Declaration

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

Parameters

Name Type Description
text String

A String value specifying the group’s display text. Initializes the group’s NavBarGroup.Text property.

name String

A String value specifying the name which identifies the created group. Initializes the group’s NavBarGroup.Name property.

iconCssClass String

A String value specifying the CSS class of the image displayed by the group’s header. Initializes the group’s BootstrapAccordionGroup.HeaderCssClass property.

navigateUrl String

A String value specifying the URL to which the browser navigates when the group’s text or associated image is clicked. Initializes the group’s NavBarGroup.NavigateUrl property.

target String

A String value which identifies the window or frame at which to target URL content when the group’s text or associated image is clicked. Initializes the group’s NavBarGroup.Target property.

Returns

Type Description
BootstrapAccordionGroup

A BootstrapAccordionGroup object representing the newly created group.

Remarks

Use the Add method to add a new group with the specified settings to the BootstrapAccordionGroupCollection object.

See Also