Skip to main content
A newer version of this page is available. .

ColumnView.FilterPanelText Property

Gets the text displayed within the filter panel.

Namespace: DevExpress.XtraGrid.Views.Base

Assembly: DevExpress.XtraGrid.v18.2.dll

Declaration

[Browsable(false)]
public virtual string FilterPanelText { get; }

Property Value

Type Description
String

A string value representing the text displayed within the filter panel.

Remarks

By default, the filter panel displays text representing the filter criteria currently applied to the View. Use the FilterPanelText property to access this text. This can, for instance, be useful to custom paint the filter panel using the ColumnView.CustomDrawFilterPanel event.

To access filter criteria applied to the View use the ColumnView.ActiveFilter property. The overall filter criteria is comprised of filters bound to columns and the filter which is not bound to any column. The filter bound to a column can be accessed via the GridColumn.FilterInfo object. To access the filter which is not bound to any column use the ViewFilter.NonColumnFilter property.

See the Filter and Search topic for detail on data filtering.

See Also