DIAdem Help

Content Type
Programming Language
Current manual
Table of Contents

Property: Visible for Bar

Property: Visible for Bar

Specifies whether a bar is visible.

Object.Visible
ObjectBar
Object with this property
Object.VisibleBoolean with read and write access

The following example hides the bar SCRGroup in the SCRIPT panel:

VBScriptPython

 

If BarManager.Bars.Exists("SCRGroup") Then
  BarManager.Bars("SCRGroup").Visible = FALSE
End If
In This Section
Was this information helpful?