Skip to main content

ColumnBase.AutoFilterValue Property

Gets or sets the value in the Automatic Filter Row for this column.

Namespace: DevExpress.WinUI.Grid

Assembly: DevExpress.WinUI.Grid.v23.2.dll

NuGet Package: DevExpress.WinUI

Declaration

[DP(null, Handler = "OnAutoFilterValueChanged")]
public object AutoFilterValue { get; set; }

Property Value

Type Description
Object

The column’s value in the automatic filter row.

Remarks

The automatic filter row allows users to filter data. When a user types text in the row, the GridControl creates a filter condition based upon the value entered and applies it to the column. 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 ColumnBase.AutoFilterCondition property.

For more information, refer to the following help topic: Automatic Filter Row.

See Also