SetSide2Hidden method: PanelController class
Syntax
SetSide2Hidden(Hidden)
Description
Use the SetSide2Hidden method to specify a Boolean value indicating whether the Side Page 2 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.SetSide2Hidden( True); /* do not display the side 1 panel */
Related Topics