Skip to main content
Row

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

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.v24.2.Core.dll

NuGet Package: DevExpress.Spreadsheet.Core

#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.

See Also