Vcl.ComCtrls.TAnimate.OnStop

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property OnStop: TNotifyEvent read FOnStop write FOnStop;

C++

__property System::Classes::TNotifyEvent OnStop = {read=FOnStop, write=FOnStop};

Properties

Type Visibility Source Unit Parent
event published
Vcl.ComCtrls.pas
Vcl.ComCtrls.hpp
Vcl.ComCtrls TAnimate

Description

Occurs when the animation control finishes playing.

Write an OnStop event handler to take specific action when the animation finishes playing all its repetitions. For example, use an OnStop event handler to shut down any simultaneous actions that were started in an OnStart event handler.

OnStop is an event handler of type TNotifyEvent.

See Also