Event to get a value for a template variable.
Source position: fptemplate.pp line 50
type TGetParamEvent = procedure( |
Sender: TObject; |
const ParamName: string; |
out AValue: string |
) of object; |
Sender |
|
Object that triggered the event. |
ParamName |
|
Name of the parameter to get a value for. |
AValue |
|
Value for the parameter. |
TGetParamEvent is the type of the event that is called when the template parser needs the value for a certain template variable.
|
Event to get a value for a template variable. |