[Overview][Constants][Types][Classes][Procedures and functions][Variables][Index] |
Empty stub for IVarInvokeable.DoFunction, to be implemented in descendents
Source position: variants.pp line 232
public function TInvokeableVariantType.DoFunction( |
var Dest: tvardata; |
const V: tvardata; |
const Name: string; |
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) |