Vcl.AppEvnts.TApplicationEvents.OnModalEnd

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property OnModalEnd: TNotifyEvent read FOnModalEnd write FOnModalEnd;

C++

__property OnModalEnd;

Properties

Type Visibility Source Unit Parent
event published
Vcl.AppEvnts.pas
Vcl.AppEvnts.hpp
Vcl.AppEvnts TApplicationEvents

Description

Occurs when a modal form is closed.

Vcl.AppEvnts.TApplicationEvents.OnModalEnd inherits from Vcl.AppEvnts.TCustomApplicationEvents.OnModalEnd. All content below this line refers to Vcl.AppEvnts.TCustomApplicationEvents.OnModalEnd.

Occurs when a modal form is closed.

Write an OnModalEnd event handler to perform special processing when a modal form is closed.

Note: Call the CancelDispatch method from an OnModalEnd event handler to prevent the application from forwarding the event to any other application events objects.

OnModalEnd is an event handler of type TNotifyEvent.

See Also