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

XlsDocumentImporterOptions.OverrideCalculationMode Property

Specifies how to change the calculation mode for a loaded document.

Namespace: DevExpress.XtraSpreadsheet.Import

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

Declaration

[DefaultValue(CalculationModeOverride.None)]
public CalculationModeOverride OverrideCalculationMode { get; set; }

Property Value

Type Default Description
CalculationModeOverride **None**

An enumeration member that specifies the calculation mode for a loaded document.

Property Paths

You can access this nested property as listed below:

Object Type Path to OverrideCalculationMode
WorkbookImportOptions
.Xlt.OverrideCalculationMode

Remarks

The example below shows how to override the calculation mode when you load an XLS file into the Spreadsheet control.


spreadsheetControl.Options.Import.Xls.OverrideCalculationMode = DevExpress.XtraSpreadsheet.Import.CalculationModeOverride.Manual;
See Also