ResourcesTreeOptionsFilter.FilterMode Property
Overrides the corresponding property of the base class to make it constant. Specifies filter mode for column values in the Resources Tree.
Namespace: DevExpress.XtraScheduler.UI
Assembly: DevExpress.XtraScheduler.v25.1.Extensions.dll
NuGet Package: DevExpress.Win.SchedulerExtensions
Declaration
[Browsable(false)]
[DefaultValue(FilterMode.Matches)]
[EditorBrowsable(EditorBrowsableState.Never)]
public override FilterMode FilterMode { get; set; }
Property Value
| Type | Default | Description |
|---|---|---|
| FilterMode | Matches | A FilterMode enumeration value. |
Available values:
| Name | Description |
|---|---|
| Default | Equivalent to ‘ParentBranch’ mode for the TreeList control. Equivalent to ‘Matches’ mode for the TreeListLookUpEdit control. |
| ParentsMatch | Shows nodes if they and all their parents match the filter.
If a node fits the filter but any of its parents does not, the node is not displayed.
|
| Matches | Shows only those nodes that match the filter. If a node is collapsed, its children are hidden even if they match the current filter. Enable the TreeListOptionsFilter.ExpandNodesOnFiltering option to automatically expand collapsed nodes before filtration.
|
| ParentBranch | Shows nodes that match the filter along with the nodes’ parents (even if they do not fit the filter).
|
| EntireBranch | Shows nodes that match the filter along with the nodes’ parents and children (even if they do not fit the filter).
|
| Standard | The same as the ‘ParentsMatch’ option. |
| Smart | The same as the ‘Matches’ option. |
| Extended | The same as the ‘ParentBranch’ option. |
Property Paths
You can access this nested property as listed below:
| Object Type | Path to FilterMode |
|---|---|
| ResourcesTree |
|




