DesignIntf.TBaseComponentGuidelines.Initialize
[–] 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.