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

TabCollection.Add(String, String, String, String, String) Method

Adds a new tab to the collection and specifies the tab’s display text, name, associated image and URL as well as the target of the URL content.

Namespace: DevExpress.Web

Assembly: DevExpress.Web.v18.2.dll

Declaration

public Tab Add(
    string text,
    string name,
    string imageUrl,
    string navigateUrl,
    string target
)

Parameters

Name Type Description
text String

A String value specifying the tab’s display text. Initializes the tab’s TabBase.Text property.

name String

A String value specifying the name which indentifies the created item. Initializes the tab’s TabBase.Name property.

imageUrl String

A String value specifying the path to the image displayed by the tab. Initializes the ImagePropertiesBase.Url property of the tab’s TabBase.TabImage.

navigateUrl String

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

target String

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

Returns

Type Description
Tab

A Tab object representing the newly created tab.

Remarks

Use the Add method to add a new tab with the specified settings to the TabCollection object.

See Also