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

CalculationOptions.EnableMultiThreading Property

Gets or sets whether to enable multi-threaded calculations for the current workbook.

Namespace: DevExpress.Spreadsheet

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

NuGet Package: DevExpress.Spreadsheet.Core

#Declaration

bool EnableMultiThreading { get; set; }

#Property Value

Type Description
Boolean

true, to enable multi-threaded calculations; otherwise, false. The default value is true.

#Property Paths

You can access this nested property as listed below:

Object Type Path to EnableMultiThreading
DocumentSettings
.Calculation .EnableMultiThreading

#Remarks

Multi-threaded calculations are supported only for the ChainBased calculation engine. Use the CalculationOptions.ThreadCount property to specify the number of calculation threads.

If you implement ICustomCalculationService, the Spreadsheet uses only one thread to calculate built-in and custom formulas.

See Also