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

dxDefaultExcelFilterValueContainerNumericValuesPageType Constant

Specifies the default UI type of an Excel-inspired filter dropdown that lists numeric values.

#Declaration

Delphi
const dxDefaultExcelFilterValueContainerNumericValuesPageType: TdxExcelFilterValueContainerNumericValuesPageType = nvptRange;

#Returns

Type
TdxExcelFilterValueContainerNumericValuesPageType

#Remarks

This global constant defines if an Excel-inspired filter dropdown shows numeric values as a simple list or provides a range track bar that allows users to specify a target range’s lower and upper bounds, without the need to check every listed value that belongs to the range. Refer to the TdxExcelFilterValueContainerNumericValuesPageType type description for additional information.

The dxDefaultExcelFilterValueContainerNumericValuesPageType global constant value defines the essential UI element of the Values page that an Excel-inspired filter dropdown shows if the target data item and its container control both have their numeric-related properties set to nvptDefault.

You can change this global constant’s value from nvptRange to nvptList and recompile all sources via the DevExpress VCL Setup to use a simple list instead of a range track bar for numeric values in all DevExpress data presentation controls by default.

Note

nvptDefault is equivalent to nvptRange as the dxDefaultExcelFilterValueContainerNumericValuesPageType global constant’s values. The filter dropdown’s Values page shows a range track bar for numeric values in both cases.

See Also