officefileapi-devexpress-dot-spreadsheet-dot-iworkbook-55e6abfc.md
Provides access to a FormulaEngine object to parse or evaluate a formula.
Namespace : DevExpress.Spreadsheet
Assembly : DevExpress.Spreadsheet.v25.2.Core.dll
NuGet Package : DevExpress.Spreadsheet.Core
FormulaEngine FormulaEngine { get; }
ReadOnly Property FormulaEngine As FormulaEngine
| Type | Description |
|---|---|
| FormulaEngine |
A FormulaEngine object that serves as a formula calculator and parser.
|
The following code snippet (auto-collected from DevExpress Examples) contains a reference to the FormulaEngine property.
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.
winforms-spreadsheet-use-formula-engine/CS/FormulaEngineTest/Form1.cs#L62
#region #evaluate
FormulaEngine engine = spreadsheetControl1.Document.FormulaEngine;
// Get coordinates of the context cell.
winforms-spreadsheet-use-formula-engine/VB/FormulaEngineTest/Form1.vb#L58
' #Region "#evaluate"
Dim engine As FormulaEngine = spreadsheetControl1.Document.FormulaEngine
' Get coordinates of the context cell.
See Also