ColumnView.FilterPanelText Property
Gets the text displayed within the filter panel.
Namespace: DevExpress.XtraGrid.Views.Base
Assembly: DevExpress.XtraGrid.v24.1.dll
NuGet Packages: DevExpress.Win.Grid, DevExpress.Win.Navigation
Declaration
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.