Back to Devexpress

IWorkbook.FormulaEngine Property

officefileapi-devexpress-dot-spreadsheet-dot-iworkbook-55e6abfc.md

latest2.5 KB
Original Source

IWorkbook.FormulaEngine Property

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

Declaration

csharp
FormulaEngine FormulaEngine { get; }
vb
ReadOnly Property FormulaEngine As FormulaEngine

Property Value

TypeDescription
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

csharp
#region #evaluate
FormulaEngine engine = spreadsheetControl1.Document.FormulaEngine;
// Get coordinates of the context cell.

winforms-spreadsheet-use-formula-engine/VB/FormulaEngineTest/Form1.vb#L58

vb
' #Region "#evaluate"
            Dim engine As FormulaEngine = spreadsheetControl1.Document.FormulaEngine
            ' Get coordinates of the context cell.

See Also

IWorkbook Interface

IWorkbook Members

DevExpress.Spreadsheet Namespace