Event procedure type for variable evaluation
Source position: fpexprpars.pp line 495
type TFPExprVariableEvent = procedure( |
var Result: TFPExpressionResult; |
constref AName: ShortString |
) of object; |
Result |
|
The result of the variable event |
AName |
|
The name of the variable being evaluated |
This event procedure type defines the signature for event handlers that resolve variable values during expression evaluation. It provides a method-based approach to variable resolution using object methods rather than standalone procedures.