IsSide1Fixed method: PanelController class
Syntax
IsSide1Fixed()
Description
Use the IsSide1Fixed method to return true if the Side Page 1 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.IsSide1Fixed() Then
...
End-If;
Related Topics