Click or drag to resize

BCSMetadataEvaluateScriptExpression Method (String, Object)

Evaluates an expression with specified arguments.

Namespace:  BlueCieloECM.InnoCielo.Meridian.Scripting
Assembly:  BlueCieloECM.InnoCielo.Meridian (in BlueCieloECM.InnoCielo.Meridian.dll) Version: 4.0.0.0 (4.0.111.0)
Syntax
public Object EvaluateScriptExpression(
	string expression,
	Object[] args
)

Parameters

expression
Type: SystemString
The expression to evaluate.
args
Type: SystemObject
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

Type: Object
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