Vcl.ExtCtrls.TCustomLabeledEdit.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.ExtCtrls.pas
Vcl.ExtCtrls.hpp
Vcl.ExtCtrls TCustomLabeledEdit

Description

Responds to notifications when objects are created or destroyed.

This protected method is called automatically immediately after objects are created and immediately before they are destroyed. TCustomLabeledEdit overrides this method to update the EditLabel property when it receives a notification that the label component is about to be destroyed.

AComponent is the component that was just created or that is about to be destroyed.

Operation indicates whether the notification indicates the creation or destruction of AComponent.

See Also