windowsforms-devexpress-dot-xtragrid-dot-views-dot-base-dot-columnviewoptionsview.md
Gets or sets a value which specifies when the Filter Panel is shown.
Namespace : DevExpress.XtraGrid.Views.Base
Assembly : DevExpress.XtraGrid.v25.2.dll
NuGet Packages : DevExpress.Win.Grid, DevExpress.Win.Navigation
[DefaultValue(ShowFilterPanelMode.Default)]
[XtraSerializableProperty]
public virtual ShowFilterPanelMode ShowFilterPanelMode { get; set; }
<DefaultValue(ShowFilterPanelMode.Default)>
<XtraSerializableProperty>
Public Overridable Property ShowFilterPanelMode As ShowFilterPanelMode
| Type | Default | Description |
|---|---|---|
| ShowFilterPanelMode | Default |
A ShowFilterPanelMode enumeration value which specifies when the filter panel is shown.
|
Available values:
| Name | Description |
|---|---|
| Default |
The filter panel is shown when the filtering is applied to a View. Otherwise, the filter panel is hidden.
| | ShowAlways |
The filter panel is always shown at the bottom of the View.
| | Never |
The filter panel is hidden.
|
You can access this nested property as listed below:
| Object Type | Path to ShowFilterPanelMode |
|---|---|
| ColumnView |
.OptionsView .ShowFilterPanelMode
|
See Also