DesignIntf.TBaseComponentGuidelines.Initialize

From RAD Studio API Documentation
Jump to: navigation, search

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

Delphi

procedure Initialize(AComponent: TComponent; AContainer: TComponent); virtual; abstract;

C++

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

Description

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