Skip to main content
A newer version of this page is available. .

FormulaEngine Interface

An object that provides the capability to calculate and parse worksheet formulas.

Namespace: DevExpress.Spreadsheet.Formulas

Assembly: DevExpress.Spreadsheet.v17.2.Core.dll

Declaration

public interface FormulaEngine

The following members accept/return FormulaEngine objects:

Library Related API Members
Cross-Platform Class Library IWorkbook.FormulaEngine
Office File API Workbook.FormulaEngine

Remarks

The FormulaEngine includes a built-in formula parser, as well as the flexibility to evaluate formulas in any range of any worksheet using the FormulaEngine.Evaluate method. You can parse a formula using the FormulaEngine.Parse method, analyze the resulting expression tree, make the required modifications and rebuild the formula string from the modified expression tree using the ParsedExpression.ToString method.

The following code snippet (auto-collected from DevExpress Examples) contains a reference to the FormulaEngine interface.

Note

The algorithm used to collect these code examples remains a work in progress. Accordingly, the links and snippets below may produce inaccurate results. If you encounter an issue with code examples below, please use the feedback form on this page to report the issue.

See Also