A callback to travel through the whole node hierarchy.
Namespace: Aspose.ThreeDAssembly: Aspose.3D (in Aspose.3D.dll) Version: 20.3.0.0 (20.3)
Syntaxpublic delegate bool NodeVisitor(
Node node
)
Public Delegate Function NodeVisitor (
node As Node
) As Boolean
public delegate bool NodeVisitor(
Node^ node
)
type NodeVisitor =
delegate of
node : Node -> bool
Parameters
- node
- Type: Aspose.ThreeDNode
Node being visited
Return Value
Type:
BooleanReturn false to stop travelling
See Also