Search
IExpressionEvaluator.EvaluateIdentifier Method
See Also
 






Evaluates the identifier with the specified name.

Namespace: MindFusion.Spreadsheet.Wpf.Expressions
Assembly: MindFusion.Spreadsheet.Wpf

 Syntax

C#  Copy Code

Object EvaluateIdentifier (
    IExpressionEvaluatorContext context,
    string identifier
)

Visual Basic  Copy Code

Function EvaluateIdentifier( _
    context As IExpressionEvaluatorContext, _
    identifier As String _
) As Object

 Parameters

context

A helper object that can be used to obtain error values, invoke predefined functions, and so on.

identifier

The name of the identifier.

 Return Value

A bool, double, string, DateTime, or TimeSpan value, or an error received by calling the IExpressionEvaluatorContext.GetError method. Any other value will be interpreted as the identifier not being evaluated.

 See Also