Gets or sets a custom expression evaluator. Identifier and function calls that cannot be resolved by the core are delegated to this evaluator.
Namespace: MindFusion.Spreadsheet
Assembly: MindFusion.Spreadsheet.WinForms
SyntaxC#
Copy Code
|
|---|
public IExpressionEvaluator ExtendedEvaluator { get; set; } |
Visual Basic
Copy Code
|
|---|
Public Property ExtendedEvaluator As IExpressionEvaluator |
An IExpressionEvaluator instance.
RemarksYou can assign to this property an instance of a custom class implementing the IExpressionEvaluator interface or an ExpressionEvaluatorList object that can contain more than one custom evaluator.
See Also