Vcl.AppEvnts.TCustomApplicationEvents.OnModalEnd

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property OnModalEnd: TNotifyEvent read FOnModalEnd write FOnModalEnd;

C++

__property System::Classes::TNotifyEvent OnModalEnd = {read=FOnModalEnd, write=FOnModalEnd};

Properties

Type Visibility Source Unit Parent
event protected
Vcl.AppEvnts.pas
Vcl.AppEvnts.hpp
Vcl.AppEvnts TCustomApplicationEvents

Description

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