Skip to main content
A newer version of this page is available. .
.NET Framework 4.5.2+
Row

Cell.ParsedExpression Property

Gets or sets the expression tree from which the formula entered in the cell is built.

Namespace: DevExpress.Spreadsheet

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

Declaration

ParsedExpression ParsedExpression { get; set; }

Property Value

Type Description
ParsedExpression

A ParsedExpression object that contains an expression tree.

Remarks

The ParsedExpression property provides you with access to an expression tree created from a formula contained in the worksheet cell.

You can also use the FormulaEngine.Parse method to create an expression tree from a string formula (which does not have to be entered in the cell) and pass the ExpressionContext object to specify a cell and a worksheet.

The following code snippet (auto-collected from DevExpress Examples) contains a reference to the ParsedExpression 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.

See Also