Skip to main content

Tab(String, String, String) Constructor

Initializes a new instance of the Tab class with the specified settings.

Namespace: DevExpress.Web

Assembly: DevExpress.Web.v23.2.dll

NuGet Package: DevExpress.Web

Declaration

public Tab(
    string text,
    string name,
    string imageUrl
)

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 tab. 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.

Remarks

Use this constructor to initialize a new instance of a Tab class using the settings passed via the parameters.

See Also