windowsforms-devexpress-dot-xtragrid-dot-columns-dot-optionscolumnfilter-fc01f8d8.md
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.XtraGrid.Columns
Assembly : DevExpress.XtraGrid.v25.2.dll
NuGet Packages : DevExpress.Win.Grid, DevExpress.Win.Navigation
[DefaultValue(ExcelFilterTextFilters.Default)]
[XtraSerializableProperty]
public virtual ExcelFilterTextFilters PopupExcelFilterTextFilters { get; set; }
<DefaultValue(ExcelFilterTextFilters.Default)>
<XtraSerializableProperty>
Public Overridable Property PopupExcelFilterTextFilters As ExcelFilterTextFilters
| Type | Default | Description |
|---|---|---|
| DevExpress.XtraGrid.Columns.ExcelFilterTextFilters | Default |
AllFilters , to show relational and pattern-matching operators in the Excel style pop-up filter menus; otherwise, TextFilters or Default.
|
You can access this nested property as listed below:
| Object Type | Path to PopupExcelFilterTextFilters |
|---|---|
| GridColumn |
.OptionsFilter .PopupExcelFilterTextFilters
|
The PopupExcelFilterTextFilters property specifies filters and operators the Excel style pop-up filter menus contain.
The ColumnView.ShowFilterPopupExcel event allows you to also specify the FilterPopupExcelEventArgs.ShowLikeFilters and FilterPopupExcelEventArgs.ShowComparisons arguments to show/hide the pattern-matching and relational operators.
See Also