windowsforms-devexpress-dot-xtragrid-dot-views-dot-base-dot-columnviewoptionsfilter-a09494f5.md
Gets or sets the default display mode of filter dropdowns for columns in the current View.
Namespace : DevExpress.XtraGrid.Views.Base
Assembly : DevExpress.XtraGrid.v25.2.dll
NuGet Packages : DevExpress.Win.Grid, DevExpress.Win.Navigation
[DefaultValue(ColumnFilterPopupMode.Default)]
[XtraSerializableProperty]
public ColumnFilterPopupMode ColumnFilterPopupMode { get; set; }
<DefaultValue(ColumnFilterPopupMode.Default)>
<XtraSerializableProperty>
Public Property ColumnFilterPopupMode As ColumnFilterPopupMode
| Type | Default | Description |
|---|---|---|
| ColumnFilterPopupMode | Default |
A value that specifies the default display mode of filter dropdowns for columns in the current View.
|
Available values:
| Name | Description |
|---|---|
| Default |
The type of column filter menus depends on the global WindowsFormsSettings.ColumnFilterPopupMode setting.
| | Excel |
Columns display Excel-style filter menus.
| | Classic |
Columns display classic drop-down filter menus.
|
You can access this nested property as listed below:
| Object Type | Path to ColumnFilterPopupMode |
|---|---|
| ColumnView |
.OptionsFilter .ColumnFilterPopupMode
|
Column filter dropdowns can be presented using the following display modes (the first two modes are also called classic ).
The style of column filter dropdowns can be set at three levels.
Application level
Control level
Column level
The ColumnViewOptionsFilter.ColumnFilterPopupMode property can be set to one of the following values:
For more details on Excel-inspired filter dropdowns, see Filter and Search.
See Also