Evaluates an expression with specified arguments.

Namespace: BlueCieloECM.InnoCielo.Meridian.Scripting
Assembly: BlueCieloECM.InnoCielo.Meridian (in BlueCieloECM.InnoCielo.Meridian.dll) Version: 1.4.0.0 (1.4.40.0)

Syntax

C#
public Object EvaluateScriptExpression(
	string expression,
	Object[] args
)
Visual Basic
Public Function EvaluateScriptExpression ( _
	expression As String, _
	args As Object() _
) As Object
Visual C++
public:
Object^ EvaluateScriptExpression(
	String^ expression, 
	array<Object^>^ args
)

Parameters

expression
Type: System..::..String
The expression to evaluate.
args
Type: array<System..::..Object>[]()[][]
An array of values that matches the number, order, and type of the parameters required to evaluate the specified expression. ByRef parameters are not supported.

Return Value

The result of the expression evaluation.

Remarks

Internally, this method uses the IAEMetaData5.FireScriptEventEx method to support the expression evaluation (the method is defined in BlueCieloECM.AMAutoEx PIA). But it is not required to reverse sequence of the elements in the args array before to call the method.

See Also