Delegate NodeVisitor

NodeVisitor delegate

A callback to travel through the whole node hierarchy.

public delegate bool NodeVisitor(Node node);
ParameterTypeDescription
nodeNodeNode being visited

Return Value

Return false to stop traveling

See Also