Search
ContainerNode.Children Property
See Also
 





Gets the child nodes of this container.

Namespace: MindFusion.Diagramming
Package: MindFusion.Diagramming

 Syntax

C#  Copy Code

public ReadOnlyDiagramNodeCollection Children { get; }

Visual Basic  Copy Code

Public ReadOnly Property Children As ReadOnlyDiagramNodeCollection

 Property Value

A collection containing the child nodes of this container.

 Remarks

Call the Add method of ContainerNode to add a child node to the container. Call Remove to remove a child node.

 See Also