Skip to main content

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

dxDefaultMultiThreadedFiltering Constant

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

#Declaration

Delphi
const dxDefaultMultiThreadedFiltering: Boolean = True;

#Returns

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

#Remarks

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

TcxDataControllerMultiThreadedOptions.Filtering
Specifies if the data controller uses a multi-threaded data filtering algorithm.
TcxvgMultiRecordsOptionsData.MultiThreadedFiltering
Specifies if the vertical grid control uses a multi-threaded filtering 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