TiScope.AutoFrameRate
TiScope
Specifies whether the control automatically controls the frame repaint rate of
the Display.
property AutoFrameRate : Boolean;
Description
Use AutoFrameRate to specify whether the Display automatically "throttles" the
frame-rate (i.e. the rate of repaints of the display per second) for you
automatically.
When this property is set to FALSE, the Display will attempt to repaint
whenever something changes in the component.
When this property is set to TRUE, then the Display will not repaint more than
the value specified per second by the UpdateFrameRate property.
Note: this property only affects the Display (i.e. the scope portion of the
control, not the control panels)
Example
Delphi
iComponent.AutoFrameRate := True;
C++ Builder
iComponent->AutoFrameRate = True;
Contents | Index | Previous | Next