Vcl.ComCtrls.TAnimate.Timers
Delphi
property Timers: Boolean read FTimers write SetTimers default False;
C++
__property bool Timers = {read=FTimers, write=SetTimers, default=0};
Properties
Type | Visibility | Source | Unit | Parent |
---|---|---|---|---|
property | published | Vcl.ComCtrls.pas Vcl.ComCtrls.hpp |
Vcl.ComCtrls | TAnimate |
Description
Specifies whether the frames are displayed using a timer.
Set Timers to specify whether the frames in the animation should be changed in response to timer messages, or whether the sequence progresses asynchronously in a separate execution thread. When Timers is true, the frames progress in response to timer messages. This is useful for synchronizing the animation sequence with other actions such as playing a sound track. When Timers is false, the animation is played in a separate thread.