Skip to main content

GridControl.FilterPanelVisibility Property

Gets or sets when the filter panel is shown at the bottom of the grid. This is a bindable property.

Namespace: DevExpress.Mobile.DataGrid

Assembly: DevExpress.Mobile.Grid.v18.2.dll

Declaration

[XtraSerializableProperty]
public VisibilityState FilterPanelVisibility { get; set; }

Property Value

Type Description
VisibilityState

A VisibilityState enumeration value which specifies when the filter panel is shown.

Available values:

Name Description
Default

An element is automatically shown when required.

Always

An element is always shown.

Never

An element is never shown.

Remarks

Important

This documentation topic describes legacy technology. We no longer develop new functionality for the GridControl and suggest that you use the new DataGridView control instead.

By default, the filter panel is automatically shown at the bottom of the grid after a filter has been applied. The filter panel displays a string which specifies the filter criteria currently applied in the grid (GridControl.ActualFilterString), and contains buttons to disable/enable and clear the filter. Removing the filter hides this panel. To make this panel always visible or always hidden, use the FilterPanelVisibility property.

See Also