Skip to main content
A newer version of this page is available. .
Row

CalculationOptions.MaxChange Property

Gets or sets the maximum change for iterative calculations.

Namespace: DevExpress.Spreadsheet

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

Declaration

double MaxChange { get; set; }

Property Value

Type Description
Double

A Double value that specifies the change between iterations. Default is 0.001.

Property Paths

You can access this nested property as listed below:

Object Type Path to MaxChange
DocumentSettings
.Calculation.MaxChange

Remarks

The calculation stops after CalculationOptions.MaxIterationCount number of iterations or after all values change by less than the MaxChange between iterations, whichever comes first.

See Also