Skip to main content

DashboardItemState.TabPageName Property

Gets the name of the tab page to which the dashboard item belongs.

Namespace: DevExpress.DashboardCommon

Assembly: DevExpress.Dashboard.v23.2.Core.dll

NuGet Package: DevExpress.Dashboard.Core

Declaration

public string TabPageName { get; set; }

Property Value

Type Description
String

A string that is the tab page’s name.

Remarks

The following code snippet specifies a default tab page in a TabContainer dashboard item:

// Specify a default tab page.
state.Items.Add(new DashboardItemState("tabContainerDashboardItem1"){
    TabPageName = "dashboardTabPage2"
});
See Also