Evaluates a function and return a result.
Namespace: WinWrap.Basic.ServerAssembly: WinWrap.Basic.Server (in WinWrap.Basic.Server.dll)
SyntaxObject Evaluate(
params Object[] args
)
Function Evaluate (
ParamArray args As Object()
) As Object
Object^ Evaluate(
... array<Object^>^ args
)
Parameters
- args Object
-
These argument values are passed by value to the function.
Use EvaluatePA to pass values by reference.
Return Value
Object
The value of the expression.
ExceptionsException | Condition |
---|
Exception | Generic exception during script execution. |
TerminatedException | Script execution terminated. |
Remarks
This method doesn't return until the function has completed.
If it fails to complete it is terminated and an exception is thrown.
Execution errors can be reported to the user with the
ReportError method.
Evaluate can be used at any time, but beware of possible deep
nesting of calls since the
DoEvents event
is called internally.
See Also