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

TdxExcelFilterValueContainerNumericValuesPageType Enum

Enumerates UI type options available for the Values page of an Excel-inspired filter dropdown that lists numeric values.

#Declaration

Delphi
TdxExcelFilterValueContainerNumericValuesPageType = (
    nvptDefault,
    nvptRange,
    nvptList
);

#Members

Name
nvptDefault
nvptRange
nvptList

#Remarks

Options include:

Value

Description

Example

nvptDefault

A more global setting determines which numeric value selection UI is considered “default” (for instance, an item uses its container control’s setting, or the control uses the global constant value, etc.)

nvptDefault and nvptRange are equivalent when used as the dxDefaultExcelFilterValueContainerNumericValuesPageType global constant’s values.

nvptRange

Explicitly sets a range track bar as the essential UI element of an Excel-inspired filter dropdown’s Values page. A user can set the lower and upper bounds of a numeric value range to use it as a filter criterion, without the need to manually check every listed value that belongs to the target range.

nvptRange and nvptDefault are equivalent when used as the dxDefaultExcelFilterValueContainerNumericValuesPageType global constant’s values.

nvptList

Explicitly lists all numeric values in a single simple list. A user must click every required value to add/remove it to/from the filter criteria, unlike the nvptRange value case.

The following public API members reference the TdxExcelFilterValueContainerNumericValuesPageType type:

See Also