Animation(Mode, Value)
Sets animation parameters.
The Graphics Block supports animation. Frames contained in an animation can be shown at varying intervals using the Delay mode. Using Add, the current state of the image is saved as a frame to be shown after the specified delay. The whole animation can be looped for a definite or indefinite number of times. This animation technique can also be used for charts. The delay is specified where 100=1 second and indefinite loops can be obtained by setting the Loop value to 0.
Parameters
- Mode. WideString.
- Value. Integer.
Example
Copy
Graphic.Animation('Delay','100');
Graphic.Animation('Loop','0');
Graphic.Animation('Add','100');