Skip to main content

dxDefaultExcelFilterValueContainerNumericValuesPageType Constant

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

Declaration

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