Visible property (Display object)
Returns or sets a value that determines whether or not the display is visible. Read/write. Boolean.
The value of this property is not persisted.
When Visible = False, the display is hidden. This places the display in the display cache. When the display is hidden, issuing the
Display
command or using the ShowDisplay
method will make the display visible.Syntax
Display
.Visible
[ = value
]where
Display
– is the name of a Display object or an expression that evaluates to a Display object.value
– is a Boolean value that determines whether or not a display is visible.Remarks
- Setting the value to True does not move focus to the display.
- To stop a display from updating, use theStopAnimationmethod.
- If the display is not animating when this property is set to True, display animation is also started (in other words, visible displays must be animating).
- When testing the animation in displays in the Graphics editor, attempts to write to this property raise an error with Err.Number equal to gfxErrorTestAnimation.
Provide Feedback