DesignEditors.TComponentGuidelines.Initialize

From RAD Studio API Documentation
Jump to: navigation, search

[–] Properties
Type:
procedure
function
Visibility: public
Source:
DesignEditors.pas
DesignEditors.hpp
Unit: DesignEditors
Parent: TComponentGuidelines

Delphi

procedure Initialize(AComponent: TComponent; AContainer: TComponent); override;

C++

virtual void __fastcall Initialize(System::Classes::TComponent* AComponent, System::Classes::TComponent* AContainer);

Description

Initializes the component and component container for which the guideline support is implemented.

DesignEditors.TComponentGuidelines.Initialize inherits from DesignIntf.TBaseComponentGuidelines.Initialize. All content below this line refers to DesignIntf.TBaseComponentGuidelines.Initialize.

Initializes the component and component container for which the guideline support is implemented.

It initializes the component and component container to the values indicated by the AComponent and AContainer parameters.

Initialize is a virtual abstract method that needs to be implemented in the classes that inherit from TBaseComponentGuidelines.

See Also