TreeListNodesIterator.Do(Action<TreeListNode>, Predicate<TreeListNode>) Method
Performs the specific operation across all Tree List nodes.
Namespace: DevExpress.XtraTreeList.Nodes.Operations
Assembly: DevExpress.XtraTreeList.v24.1.dll
NuGet Packages: DevExpress.Win.Navigation, DevExpress.Win.TreeList
Declaration
public virtual void Do(
Action<TreeListNode> execute,
Predicate<TreeListNode> canContinueIteration
)
Parameters
Name | Type | Description |
---|---|---|
execute | Action<TreeListNode> | An Action<TreeListNode> delegate that performs an operation on nodes. |
canContinueIteration | Predicate<TreeListNode> | A Predicate<TreeListNode> delegate that checks whether or not the execute operation should be applied to the remaining nodes. |
See Also