Empty stub for IVarInvokeable.DoFunction, to be implemented in descendents.
Source position: variants.pp line 239
public function TInvokeableVariantType.DoFunction( |
var Dest: tvardata; |
const V: tvardata; |
const Name: AnsiString; |
const Arguments: TVarDataArray |
):Boolean; virtual; |
Dest |
|
Result of function call. |
V |
|
Variant on which to operate. |
Name |
|
Name of function to call. |
Arguments |
|
Arguments passed to function. |
Always false.
DoFunction is the default implementation of IVarInvokeable.DoFunction, which always returns False. It must be overridden in descendent classes to implement actual calling of a function.
|
Called for methods that return a result (functions). |