Return an enumerator for this node’s direct descendent children.
An enumerator for this node's children.
This method allows you to use the foreach loop to iterate over a node's children. For example, you could do the following:
foreach(PNode node in aNode) {
node.DoSomething();
}
Typically, you will not need to call this method directly. Instead use the ChildrenEnumerator property. PNode Class | UMD.HCIL.Piccolo Namespace