|
|
|
| TextTemplateConverter component.
|
| type
|
| TacTemplateParameter = class(TCollectionItem)
|
| published
|
| property Name: String;
|
| property Value: String;
|
| end;
|
|
|
| function ParamByName(const ParamName: String): TacTemplateParameter;
|
| The ParamByName method returns the pointer to TacTemplateParameter object where the Name property is equal to the ParamName parameter.
|
|
|
| You can use this method to quickly find the keyword and modify its Value.
|
|
|
| acTemplateConverter1.ParamByName('%keyword%').Value := 'New Value for Keyword';
|
| Params property;
|
| ParamByValue and Convert methods.
|