DataPA Enterprise Dashboard Controls API Reference
Gets and sets a value that indicates if this tab will be disposed of when the user moves to another tab.

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

Syntax

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

Property Value

Type: Boolean
True if this tab will be disposed of when the user moves to another tab.

Return Value

Type: Boolean
True if this tab will be disposed of when the user moves to another tab.

Remarks

Setting this property to true will reduce the memory this tab takes up when it is not being viewed. However, it will require the tab to be re-rendered each time it is shown.

See Also