Vcl.ComCtrls.TAnimate.OnStart
Delphi
property OnStart: TNotifyEvent read FOnStart write FOnStart;
C++
__property System::Classes::TNotifyEvent OnStart = {read=FOnStart, write=FOnStart};
Properties
Type | Visibility | Source | Unit | Parent |
---|---|---|---|---|
event | published | Vcl.ComCtrls.pas Vcl.ComCtrls.hpp |
Vcl.ComCtrls | TAnimate |
Description
Occurs immediately after the animation control starts playing.
Write an OnStart event handler to take specific action when the animation is played. Setting the Active property to true or calling the Play method triggers an OnStart event. OnStart is useful for launching other actions that should be synchronized with the playing of the animation sequence.
OnStart is an event handler of type TNotifyEvent.