DashboardItemState.TabPageName Property
Gets the name of the tab page to which the dashboard item belongs.
Namespace: DevExpress.DashboardCommon
Assembly: DevExpress.Dashboard.v24.1.Core.dll
NuGet Package: DevExpress.Dashboard.Core
Declaration
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