Vcl.Forms.TCustomForm.OnHide
Delphi
property OnHide: TNotifyEvent read FOnHide write FOnHide stored IsForm;
C++
__property System::Classes::TNotifyEvent OnHide = {read=FOnHide, write=FOnHide, stored=IsForm};
Properties
Type | Visibility | Source | Unit | Parent |
---|---|---|---|---|
event | protected | Vcl.Forms.pas Vcl.Forms.hpp |
Vcl.Forms | TCustomForm |
Description
Occurs when the form is hidden (that is, when its Visible property is set to false).
Use OnHide to perform special processing when the form is hidden (that is, when the form's Visible property is set to false).
See Also
Code Examples