IsSide2Fixed method: PanelController class

Syntax

IsSide2Fixed()

Description

Use the IsSide2Fixed method to return true if the Side Page 2 panel is set to fixed 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.IsSide2Fixed() Then
   ...
End-If;