Property: Visible for Bar
- Updated2024-09-12
- 1 minute(s) read
Bar Manager > Properties > Property: Visible for Bar
Property: Visible for Bar
Specifies whether a bar is visible.
Object.Visible
Object | Bar Object with this property |
Object.Visible | Boolean with read and write access |
The following example hides the bar SCRGroup in the SCRIPT panel:
VBScript | Python |
If BarManager.Bars.Exists("SCRGroup") Then BarManager.Bars("SCRGroup").Visible = FALSE End If