Class TBrookConfigurator
Unit
BrookConfigurator
Declaration
type TBrookConfigurator = class(TBrookComponent)
Description
Configures objects by means of string or file.
Hierarchy
Overview
Methods
Properties
Description
Methods
|
function GetTarget: TObject; virtual; |
|
|
procedure SetTarget(AValue: TObject); virtual; |
|
|
constructor Create(AOwner: TComponent); override; |
Creates an instance of a TBrookConfigurator class.
|
|
procedure Configure; |
Configures the target property.
|
Properties
|
property Target: TObject read GetTarget write SetTarget; |
Defines the object to be configured.
|
|
property Prop[constAName:string]: string read GetProp write SetProp; |
Handles the target properties.
|
|
property Param[constAName:string]: string read GetParam
write SetParam; |
Handles a string list of params of a configuration.
|
|
property IgnoredParams: TStrings read FIgnoredParams write SetIgnoredParams; |
Ignored params in the configuration.
|
|
property Params: TStrings read FParams write SetParams; |
Params of the configuration.
|
|
property AfterConfigure: TBrookConfigureEvent read FAfterConfigure
write FAfterConfigure; |
Is triggered after configure.
|
|
property BeforeConfgure: TBrookConfigureEvent read FBeforeConfgure
write FBeforeConfgure; |
Is triggered before configure.
|
Generated by PasDoc 0.15.0.
|