Event to replace a tag.
Source position: fptemplate.pp line 51
type TReplaceTagEvent = procedure( |
Sender: TObject; |
const TagString: string; |
TagParams: TStringList; |
out ReplaceText: string |
) of object; |
Sender |
|
Object that triggered the event. |
TagString |
|
Tag to be replaced. |
TagParams |
|
Parameters for the tag. |
ReplaceText |
|
The replacement text. |
TReplaceTagEvent is the type of the event that is called when the template parser needs to replace a tag.
|
Event to replace a tag. |