Vcl.ComCtrls.TCustomUpDown.Notification

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

procedure Notification(AComponent: TComponent; Operation: TOperation); override;

C++

virtual void __fastcall Notification(System::Classes::TComponent* AComponent, System::Classes::TOperation Operation);

Properties

Type Visibility Source Unit Parent
procedure
function
protected
Vcl.ComCtrls.pas
Vcl.ComCtrls.hpp
Vcl.ComCtrls TCustomUpDown

Description

Responds to notifications when components are about to be created or destroyed.

After calling the inherited method, Notification checks whether the control specified by the Associate property is about to be destroyed, and if so, sets the Associate property to nil (Delphi) or NULL (C++).

See Also