Welcome to the new DelphiDabbler Code Library Documentation.

This is a new site that's currently running on alpha code. There are going to be bugs. If you discover any, please report them on the site's issues page (GitHub account required). Thanks.

Warning: Many URLs are going to change. Refer to the README file to discover which library project's documentation has been completed.

OnHide event

Project: Message Dialogue Components.

Unit: PJMessageDialog.

Class: TPJVCLMsgDlg

Applies to: ~>3.0

type
  TPJVCLMsgDlgFormEvent = procedure(
    Sender: TObject; Dlg: TForm
  ) of object;

property OnHide: TPJVCLMsgDlgFormEvent;

Description

The OnHide event is triggered just after the component’s dialogue box is hidden when it is closed. A reference to the component itself is passed to the event handler’s Sender parameter while the Dlg parameter references the dialogue box form.

The Dlg parameter can be used to tidy up any customisation performed in the OnShow event handler. Most customisations do not need to be tidied up, but the handler has uses on occasions where there may be results to be read from customisations or where any non-component objects created in OnShow need to be freed.

Warning: The form referenced by the Dlg parameter is destroyed shortly after OnHide returns, so should not be referenced after the handler has completed. The form reference is the same one that is provided to the OnShow event handler.