OnQueryClosePageEvent (Page) Trigger Event

Version: Available or changed with runtime version 1.0.

Executed after the OnQueryClosePage trigger, which is called as a page closes and before the OnClosePage trigger executes.

Syntax

[EventSubscriber(ObjectType::Page, Page::<Page Name>, 'OnQueryClosePageEvent', '', <SkipOnMissingLicense>, <SkipOnMissingPermission>)]
local procedure MyProcedure(var Rec: Record; var AllowClose: Boolean)
begin
    ...
end;

Parameters

Rec
 Type: Record
The table that raises the event.

AllowClose
 Type: Boolean
Specifies whether to the page can close. If this parameter is true, the code will be executed. If this parameter is false, then the code is not executed.

See Also

Get Started with AL
Developing Extensions