Search
TreeViewNode Constructor (TreeViewNode)
See Also
 





Initializes a new instance of the TreeViewNode class using the specified node as a prototype.

Namespace: MindFusion.Diagramming
Package: MindFusion.Diagramming

 Syntax

C#  Copy Code

public TreeViewNode (
    TreeViewNode prototype
)

Visual Basic  Copy Code

Public New ( _
    prototype As TreeViewNode _
)

 Parameters

prototype

The treeview node to use as a prototype. The properties of the new treeview are initialized from the property values of prototype.

 Remarks

This constructor copies the TreeViewNode property values from the specified prototype node.

 See Also