DataPA Enterprise Dashboard Controls API Reference
Gets and sets a value that indicates if the control is in full screen mode.

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

Syntax

C#
public bool FullScreenMode { get; set; }
Visual Basic
Public Property FullScreenMode As Boolean
	Get
	Set
Visual C++
public:
virtual property bool FullScreenMode {
	bool get () sealed;
	void set (bool value) sealed;
}

Property Value

Type: Boolean
True if the control is in full screen mode.

Return Value

Type: Boolean
True if the control is in full screen mode.

Remarks

Setting this property to true does not change the size or location of the control, it merely determines what is displayed on the control. In order to render the dashboard full screen, it is the developers responsibility to hide the border and other controls on the form and resize the dashboard control.

See Also