SetSide1Hidden method: PanelController class
Syntax
SetSide1Hidden(Hidden)
Description
Use the SetSide1Hidden method to specify a Boolean value indicating whether the Side Page 1 panel is hidden (not displayed) to users.
Note:
The default value is false.
Parameters
| Parameter | Description |
|---|---|
|
Hidden |
Specifies a Boolean value indicating whether the panel is hidden. |
Returns
None
Example
import PT_PAGE_UTILS:*;
Local PT_PAGE_UTILS:PanelController &oPC = create PT_PAGE_UTILS:PanelController();
&oPC.Initialize( True); /* Initialize for single operation – auto update so no need for UpdatePanel()*/
&oPC.SetSide1Hidden( True); /* do not display the side 1 panel */
Related Topics