windowsforms-devexpress-dot-xtraverticalgrid-dot-rows-dot-vgridoptionsrowfilter-94fc08d8.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.XtraVerticalGrid.Rows
Assembly : DevExpress.XtraVerticalGrid.v25.2.dll
NuGet Packages : DevExpress.Win.Navigation, DevExpress.Win.VerticalGrid
[DefaultValue(ExcelFilterTextFilters.Default)]
[XtraSerializableProperty]
public virtual ExcelFilterTextFilters PopupExcelFilterTextFilters { get; set; }
<DefaultValue(ExcelFilterTextFilters.Default)>
<XtraSerializableProperty>
Public Overridable Property PopupExcelFilterTextFilters As ExcelFilterTextFilters
| Type | Default | Description |
|---|---|---|
| DevExpress.XtraVerticalGrid.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 |
|---|---|
| RowProperties |
.OptionsFilter .PopupExcelFilterTextFilters
|
The PopupExcelFilterTextFilters property specifies filters and operators the Excel style pop-up filter menus contain.
The VGridControl.ShowFilterPopupExcel event allows you to also specify the ShowLikeFilters and ShowComparisons arguments to show/hide the pattern-matching and relational operators.
See Also