IsSide1Enabled method: PanelController class

Syntax

IsSide1Enabled()

Description

Use the IsSide1Enabled method to return true if the Side Page 1 panel has been enabled by the system; otherwise, false if the system has disabled the panel.

Parameters

None

Returns

A Boolean value.

Example

import PT_PAGE_UTILS:*;
Local PT_PAGE_UTILS:PanelController &oPC = create PT_PAGE_UTILS:PanelController();
/* Multiple operations to be performed – auto-update disabled */
&oPC.Initialize( False); 
If &oPC.IsSide1Enabled() Then
   ...
End-If;