DataPA Enterprise Dashboard Controls API Reference
Gets or sets a value indicating whether the docking page specified by PageType and Index is visible. (Index is only applicable if the PageType is DashboardPageType.DataViewer, and refers to the index of the specific DataViewer page in the DataViewerPages array.).

Namespace: DataPAEnterpriseDashboard
Assembly: DataPAEnterpriseDashboard (in DataPAEnterpriseDashboard.dll) Version: 1.0.90.0 (1.0.90.0)

Syntax

C#
public bool IsPageShowing(
	DashboardDesigner..::..DashboardPageType PageType,
	int Index = 0
)
Visual Basic
Public Function IsPageShowing ( 
	PageType As DashboardDesigner..::..DashboardPageType,
	Optional Index As Integer = 0
) As Boolean
Visual C++
public:
virtual bool IsPageShowing(
	DashboardDesigner..::..DashboardPageType PageType, 
	int Index = 0
) sealed

Parameters

PageType
Type: DataPAEnterpriseDashboard..::..DashboardDesigner..::..DashboardPageType
The type of page.
Index (Optional)
Type: System..::..Int32
If the PageType is DashboardPageType.DataViewer, the index of the specific DataViewer page in the DataViewerPages array.

Return Value

Type: Boolean
True if page is shown.

Remarks