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

PivotGridFieldOptionsFilter.PopupExcelFilterTextFilters Property

Gets or sets a set of relational operators (equality and inequalities) used to create a filter condition in the Filters tab of the Excel-style filter popup (if the current field contains text data).

Namespace: DevExpress.XtraPivotGrid

Assembly: DevExpress.XtraPivotGrid.v24.2.dll

NuGet Package: DevExpress.Win.PivotGrid

#Declaration

[DefaultValue(ExcelFilterTextFilters.Default)]
[XtraSerializableProperty]
public virtual ExcelFilterTextFilters PopupExcelFilterTextFilters { get; set; }

#Property Value

Type Default Description
ExcelFilterTextFilters Default

An ExcelFilterTextFilters value that specifies a set of relational operators (equality and inequalities) used to create a filter condition in the Filters tab of the Excel-style filter popup.

Available values:

Name Description
Default

The ‘Filters’ tab contains a default set of operators.

TextFilters

The ‘Filters’ tab includes only the equality relational operators (Equals, DoesNotEqual).

AllFilters

The ‘Filters’ tab includes all available operators, including the inequality operators (GreaterThan, GreaterThanOrEqualTo, LessThan, LessThanOrEqualTo, Between).

#Property Paths

You can access this nested property as listed below:

Object Type Path to PopupExcelFilterTextFilters
PivotGridField
.OptionsFilter .PopupExcelFilterTextFilters
See Also