windowsforms-devexpress-dot-xtragrid-dot-views-dot-base-dot-columnviewoptionsfind-1407b796.md
Gets or sets whether to search data in expanded detail views.
Namespace : DevExpress.XtraGrid.Views.Base
Assembly : DevExpress.XtraGrid.v25.2.dll
NuGet Packages : DevExpress.Win.Grid, DevExpress.Win.Navigation
[DefaultValue(DefaultBoolean.Default)]
[XtraSerializableProperty]
public virtual DefaultBoolean AllowFindInExpandedDetails { get; set; }
<DefaultValue(DefaultBoolean.Default)>
<XtraSerializableProperty>
Public Overridable Property AllowFindInExpandedDetails As DefaultBoolean
| Type | Default | Description |
|---|---|---|
| DefaultBoolean | Default |
true to search data in expanded detail views; otherwise, false.
|
Available values:
| Name | Description | Return Value |
|---|---|---|
| True |
The value is true.
|
0
| | False |
The value is false.
|
1
| | Default |
The value is specified by a global option or a higher-level object.
|
2
|
You can access this nested property as listed below:
| Object Type | Path to AllowFindInExpandedDetails |
|---|---|
| ColumnView |
.OptionsFind .AllowFindInExpandedDetails
|
If the AllowFindInExpandedDetails property is set to Default, the property value is inherited from the parent view. You can set this property to false for a detail view to exclude its children from search operations.
In Filter mode, the Data Grid does not hide empty detail views. Views that do not contain records that match the search string display the “ No search results. “ text:
In Search mode, result count, navigation between results, and scrollbar annotations are supported for the master view only.
See Also