Click or drag to resize

IHandlerEvaluatePA Method

Evaluates a function and return a result.

Namespace: WinWrap.Basic.Server
Assembly: WinWrap.Basic.Server (in WinWrap.Basic.Server.dll)
Syntax
Object EvaluatePA(
	Object[] args
)

Parameters

args  Object
These argument values are passed by reference to the function.

Return Value

Object
The value of the expression.
Exceptions
ExceptionCondition
ExceptionGeneric exception during script execution.
TerminatedExceptionScript 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.

EvaluatePA can be used at any time, but beware of possible deep nesting of calls since the DoEvents event is called internally.

See Also