DesignIntf.TBaseComponentGuidelines.Initialize

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

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

C++

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

Properties

Type Visibility Source Unit Parent
procedure
function
public
DesignIntf.pas
DesignIntf.hpp
DesignIntf TBaseComponentGuidelines

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