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

CalculationOptions.FullCalculationOnLoad Property

Indicates whether formulas should be recalculated when the workbook is opened.

Namespace: DevExpress.Spreadsheet

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

Declaration

bool FullCalculationOnLoad { get; set; }

Property Value

Type Description
Boolean

true to recalculate all formulas when the workbook is opened; otherwise, false. Default is false.

Property Paths

You can access this nested property as listed below:

Object Type Path to FullCalculationOnLoad
DocumentSettings
.Calculation .FullCalculationOnLoad

Remarks

The FullCalculationOnLoad property value is stored in a document file. When the Spreadsheet opens a workbook with this option enabled, it recalculates all formulas. However, if the CalculationOptions.Mode property is set to Manual, the Spreadsheet does not recalculate the workbook even if FullCalculationOnLoad is true.

See Also