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

RowProperties.FilterMode Property

Gets or sets whether display or edit values of this row used to filter the control’s data.

Namespace: DevExpress.XtraVerticalGrid.Rows

Assembly: DevExpress.XtraVerticalGrid.v18.2.dll

Declaration

[DefaultValue(ColumnFilterMode.Value)]
[XtraSerializableProperty]
public ColumnFilterMode FilterMode { get; set; }

Property Value

Type Default Description
ColumnFilterMode **Value**

A ColumnFilterMode enumeration value that specifies whether display or edit values of this row are used to filter the control’s data.

Available values:

Name Description
Value

A column’s data is filtered by the edit values.

DisplayText

A column’s data is filtered by the display text.

Remarks

By default, values form the underlying data source are used to filter the control’s data from the filter dropdown. However, cell values can be formatted using a custom format (see RowProperties.Format). In this case, you may also need to filter the control’s data using the text displayed in cells, rather than the values from the data source. For this purpose, set the FilterMode property to DisplayText.

See Also