Skip to main content

GridControl.ActualFilterString Property

Returns the string that specifies a filter currently used in the grid.

Namespace: DevExpress.Mobile.DataGrid

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

Declaration

public string ActualFilterString { get; }

Property Value

Type Description
String

A String value that specifies the grid’s current filter.

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.

A filter applied to data in the grid is composed of the following criteria.

To get the string that specifies the filter currently used in the grid (including both column auto filters and grid filter expression), use the ActualFilterString property. By default, this string is shown in the filter panel that is automatically displayed at the bottom of the grid after a filter has been created. This panel provides buttons allowing end-users to disable/enable and clear the filter. To control the visibility of the filter panel, use the GridControl.FilterPanelVisibility property.

To clear the grid’s filter, use the GridControl.ClearFilter property.

See Also