Skip to main content

dxDefaultMultiThreadedSorting Constant

Specifies if multi-threaded data sorting algorithms are enabled at the application level.

Declaration

const dxDefaultMultiThreadedSorting: Boolean = True;

Returns

Type Description
Boolean
  • If True (recommended), corresponding default data controller and grid settings indicate that multi-threaded sorting algorithms are enabled.
  • If False, corresponding default data controller and grid settings indicate that multi-threaded sorting algorithms are enabled.

Remarks

The dxDefaultMultiThreadedSorting global constant defines the default setting for the following properties:

TcxDataControllerMultiThreadedOptions.Sorting
Specifies if the data controller uses a multi-threaded data sorting algorithm.
TcxTreeListOptionsData.MultiThreadedSorting
Specifies if the tree list control uses a multi-threaded sorting algorithm.

Global Multi-Threading Flag

The dxEnableMultiThreading global constant allows you to enable (default) or disable multi-threaded calculations in all DevExpress components in the application. If dxEnableMultiThreading is set to False, all other multi-threading settings have no effect.

See Also