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

TreeListOptionsFind.Behavior Property

Gets or sets whether records that do not match a query in the Find Panel are hidden.

Namespace: DevExpress.XtraTreeList.Columns

Assembly: DevExpress.XtraTreeList.v19.1.dll

Declaration

[DXCategory("Data")]
[DefaultValue(FindPanelBehavior.Default)]
[XtraSerializableProperty]
public virtual FindPanelBehavior Behavior { get; set; }

Property Value

Type Default Description
FindPanelBehavior **Default**

A DevExpress.XtraEditors.FindPanelBehavior enumeration value that specifies whether records that do not match the query are hidden.

Available values:

Name Description
Default

When the WindowsFormsSettings.FindPanelBehavior property is set to Default, the actual setting is Filter. When a control’s OptionsFind.Behavior property is set to Default, the actual setting is specified by the WindowsFormsSettings.FindPanelBehavior property.

Filter

Hide records that do not match a query. Highlight search results in cells.

FindPanelBehavior_Filter

Search

Highlight search results in cells and on the scrollbar

FindPanelBehavior_Search

Property Paths

You can access this nested property as listed below:

Library Object Type Path to Behavior
WinForms Controls ResourcesTree
.OptionsFind.Behavior
TreeList
.OptionsFind.Behavior
Reporting XRDesignFieldList
.OptionsFind.Behavior
XRDesignReportExplorer
.OptionsFind.Behavior

Remarks

The Find Panel supports two modes:

  • Filter — hides records that do not match the query, and optionally highlights results in the tree list.
  • Search — highlights results in the tree list and on the scrollbar.

Use the following properties to specify how to show search results:

See Also