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

ColumnViewOptionsFind.FindFilterColumns Property

Gets or sets the field names against which searches are performed by the Find Panel.

Namespace: DevExpress.XtraGrid.Views.Base

Assembly: DevExpress.XtraGrid.v20.2.dll

NuGet Package: DevExpress.Win.Grid

Declaration

[DefaultValue("*")]
[XtraSerializableProperty]
public virtual string FindFilterColumns { get; set; }

Property Value

Type Default Description
String "*"

A string specifying the field names against which searches are performed.

Property Paths

You can access this nested property as listed below:

Object Type Path to FindFilterColumns
AdvBandedGridView
.OptionsFind .FindFilterColumns
BandedGridView
.OptionsFind .FindFilterColumns
ColumnView
.OptionsFind .FindFilterColumns
CardView
.OptionsFind .FindFilterColumns
GridView
.OptionsFind .FindFilterColumns
LayoutView
.OptionsFind .FindFilterColumns
WinExplorerView
.OptionsFind .FindFilterColumns

Remarks

If the FindFilterColumns property is set to “*”, the Find Panel performs searches against all visible columns.

To explicitly specify search columns, set the FindFilterColumns property to a string consisting of the corresponding field names delimited by a semicolon (without space characters): “Name;Value;Description”.

See Also