Class TreeViewItem.EnumExpandedItemsParams
Represents the parameters used for enumerating expanded tree control items.
public record TreeViewItem.EnumExpandedItemsParams : IEquatable<TreeViewItem.EnumExpandedItemsParams>
- Inheritance
-
TreeViewItem.EnumExpandedItemsParams
- Implements
Fields
- Condition
A function that determines whether an item should be included in the enumeration. This function takes a TreeViewItem as input and returns
trueif the item meets the condition; otherwise,false.
- Default
The default instance of TreeViewItem.EnumExpandedItemsParams.
- OnlyExpanded
Specifies whether to include only items with expanded parents in the enumeration. Defaults to
true.
- OnlyVisible
Specifies whether to include only visible items in the enumeration. Defaults to
true.
- Recursive
Specifies whether to process all child items recursively. Defaults to
true.