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

ViewFilter.DisplayText Property

OBSOLETE

Use the ColumnView.FilterPanelText property or ColumnView.GetFilterDisplayText method instead

Gets the textual representation of the entire filter string.

Namespace: DevExpress.XtraGrid.Views.Base

Assembly: DevExpress.XtraGrid.v19.2.dll

Declaration

[Obsolete("Use the ColumnView.FilterPanelText property or ColumnView.GetFilterDisplayText method instead")]
public string DisplayText { get; }

Property Value

Type Description
String

The textual representation of the entire filter string.

Remarks

This property is obsolete. To get the textual representation of the current filter criteria, use the ColumnView.FilterPanelText property or call the ColumnView.GetFilterDisplayText method with the ColumnView.ActiveFilter object as a parameter.

To get the entire filter expression rather than the displayed text, use the ViewFilter.Expression property.

See Also