Search
TreeEnumerator.MoveNext Method
See Also
 





Advances the enumerator to the next element of the tree.

Namespace: MindFusion.Diagramming
Package: MindFusion.Diagramming

 Syntax

C#  Copy Code

public bool MoveNext ()

Visual Basic  Copy Code

Public Function MoveNext () As Boolean

 Return Value

true if the enumerator has successfully passed to the next DiagramItem in the collection; false if there are no more elements available to enumerate.

 Remarks

Initially an enumerator is positioned before the first element of the tree (the root), and the first call to MoveNext moves the enumerator over that first element.

 See Also