Determines if a given group is visible.
Usage
Set_Property(OLECtrlEntID, "OLE.GroupVisible[key]", Boolean)
Values
Boolean can be True or False.
Default: True
Indices
Index | Description |
---|---|
key | The target group's unique key |
Remarks
The GroupVisible property gets or sets the current visibility state of a given group. When you defined the group during the Init method, you gave it a unique key. You must pass that key in order to show or hide it. When this property is set to false, the group is visibly removed from its tab, though it still exists and can be manipulated programmatically.
Example
// Hide the group containing the clipboard controls Set_Property(@Window:".OLE_RIBBON", "OLE.GroupVisible[CLIPBOARD]", 0)