Skip to main content

GridColumn.AutoFilterValue Property

Gets or sets the value in the auto-filter panel for the column. This is a bindable property.

Namespace: DevExpress.Mobile.DataGrid

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

Declaration

[XtraSerializableProperty]
public object AutoFilterValue { get; set; }

Property Value

Type Description
Object

An object that specifies the value in the auto-filter panel.

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.

The auto-filter panel allows end-users to filter data on the fly by typing text directly into the panel. To do this in code, use the AutoFilterValue property. The type of the comparison operator used to create filter conditions for the current column is specified by the GridColumn.AutoFilterCondition property.

See Also