IsSide1Overlay method: PanelController class

Syntax

IsSide1Overlay()

Description

Use the IsSide1Ovelay method to return true if the Side Page 1 panel is set to overlay mode.

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.IsSide1Overlay() Then
   ...
End-If;