IsSide2Open method: PanelController class
Syntax
IsSide2Open()
Description
Use the IsSide2Open method to return true if the Side Page 2 panel is open.
Important:
Because invocations of SetSide2OpenState can have no effect in certain circumstances, this method is accurate only when the panel is set to a persistent open state.
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.IsSide2Open() Then
...
End-If;
Related Topics