Skip to main content

TreeListNodesIterator.DoLocal(Action<TreeListNode>, Predicate<TreeListNode>, TreeListNodes) Method

Performs a specific operation on TreeList nodes.

Namespace: DevExpress.XtraTreeList.Nodes.Operations

Assembly: DevExpress.XtraTreeList.v23.2.dll

NuGet Packages: DevExpress.Win.Navigation, DevExpress.Win.TreeList

Declaration

public virtual void DoLocal(
    Action<TreeListNode> execute,
    Predicate<TreeListNode> canContinueIteration,
    TreeListNodes nodes
)

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 next node.

nodes TreeListNodes

A TreeListNodes collection that stores nodes which should be exposed to the execute operation.

See Also