IsSide2Enabled method: PanelController class
Syntax
IsSide2Enabled()
Description
Use the IsSide2Enabled method to return true if the Side Page 2 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;