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

CalculationOptions.Iterative Property

Gets or sets whether the application should perform iterative calculations for formulas that contain circular references.

Namespace: DevExpress.Spreadsheet

Assembly: DevExpress.Spreadsheet.v19.1.Core.dll

Declaration

bool Iterative { get; set; }

Property Value

Type Description
Boolean

true, to perform iterative calculations; otherwise, false. Default is false.

Property Paths

You can access this nested property as listed below:

Object Type Path to Iterative
DocumentSettings
.Calculation.Iterative

Remarks

A circular reference in a formula is a reference to the cell that contains the formula. For such formulas, you should determine how many times the formula should be recalculated. If the Iterative is set to false (default), only the first iteration is performed to calculate the formula. Otherwise, the number of calculations will be determined by the CalculationOptions.MaxIterationCount and the CalculationOptions.MaxChange settings.

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