Skip to main content

TreeListOptionsColumnFilter.PopupExcelFilterTextFilters Property

Gets or sets whether to show pattern-matching (e.g., Is Like) and relational (e.g., Greater Than) operators for string values in the Excel style pop-up filter menus.

Namespace: DevExpress.XtraTreeList.Columns

Assembly: DevExpress.XtraTreeList.v23.2.dll

NuGet Packages: DevExpress.Win.Navigation, DevExpress.Win.TreeList

Declaration

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

Property Value

Type Default Description
DevExpress.XtraTreeList.ExcelFilterTextFilters Default

AllFilters, to show relational and pattern-matching operators in the Excel style pop-up filter menus; otherwise, TextFilters or Default.

Property Paths

You can access this nested property as listed below:

Object Type Path to PopupExcelFilterTextFilters
TreeListColumn
.OptionsFilter .PopupExcelFilterTextFilters

Remarks

The PopupExcelFilterTextFilters property specifies filters and operators the Excel style pop-up filter menus contain.

  • TextFilters or Default — the menus contain only operators and filters for text values (Equals, Does Not Equal, Begins With, Ends With, Contains, Does Not Contain, Is Blank, Is Not Blank, Custom Filter);
  • AllFilters — the menus also contain pattern-matching (Is Like, Is Not Like) and relational (Greater Than, Greater Than Or Equal To, Less Than, Less Than Or Equal To, Between) operators.

The TreeList.ShowFilterPopupExcel event allows you to also specify the ShowLikeFilters and ShowComparisons arguments to show/hide the pattern-matching and relational operators.

See Also