IsSide1FullWidth method: PanelController class
Syntax
IsSide1FullWidth()
Description
Use the IsSide1FullWidth method to return true if the Side Page 1 panel is set to consume the full width of the window when the panel is open.
Important:
Full width mode is not recommended because the panel does not display an expand/collapse button; therefore, you must programmatically close the panel based on other user actions—such as when the user clicks a link or selects an item within 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.IsSide1FullWidth() Then
...
End-If;
Related Topics