AutoRedraw Property
AutoRedraw enables or disables Automatic Redraw. It has a Boolean value. If the value is 'True', the automatic redraw is on and each time the window contents or view is changed, the image is automatically redrawn. If the value is 'False', automatic redraw is off.
Syntax
object.AutoRedraw
object. AutoRedraw = Enabled
Parameter |
Type |
Description |
Enabled |
Boolean |
required |
Example 1
This example demonstrates how to return whether or not the plot window automatically redraws whenever changes are made.
Debug .Print PlotWindow.AutoRedraw
Example 2
This example demonstrates how to set a plot window to automatically redraw.
PlotWindow.AutoRedraw = True
Example 3
This script displays all the methods and properties in the PlotWindow object.
Used by: PlotWindow object