Shows or hides a pane.
Usage
Set_Property(OLECtrlEntID, "OLE.PaneVisible[index]", Boolean)
Values
[True | False]
Default: True
Indices
Index | Description |
---|---|
index | Index to an exisiting pane |
Remarks
The PaneVisible property shows or hides a pane. Set it to 1 to show a pane or 0 to hide it. When you hide a pane, the other panes move and/or resize to fill in the vacated space.
Example
// Hide the 2nd pane Set_Property(@Window:".OLE_STATUSBAR", "OLE.PaneVisible[2]", 0) // Show all the panes Set_Property(@Window:".OLE_STATUSBAR", "OLE.PaneVisible[All]", 1)