www.Chart4.NET | Samples

The tree-node collection that contains data items (nodes) together with text, title, tooltip, imageindex etc. Each line of text (the first one being the node-title) should be separated by \n in the tree-node's text property.

Namespace:  UnifoChart.Hierarchy
Assembly:  UnifoChart.Hierarchy (in UnifoChart.Hierarchy.dll) Version: 2.6.0.0 (2.6)

Syntax

C#
public TreeNodeCollection hpDataNodeCollection { get; set; }
Visual Basic (Declaration)
Public Property hpDataNodeCollection As TreeNodeCollection
Visual Basic (Usage)
Dim instance As HierarchyWin
Dim value As TreeNodeCollection

value = instance.hpDataNodeCollection

instance.hpDataNodeCollection = value
Visual C++
public:
property TreeNodeCollection^ hpDataNodeCollection {
	TreeNodeCollection^ get ();
	void set (TreeNodeCollection^ value);
}
J#
/** @property */
public TreeNodeCollection get_hpDataNodeCollection()
/** @property */
public  void set_hpDataNodeCollection(TreeNodeCollection value)
JScript
public function get hpDataNodeCollection () : TreeNodeCollection
public function set hpDataNodeCollection (value : TreeNodeCollection)
JavaScript
function get_hpDataNodeCollection();
function set_hpDataNodeCollection(value);

Field Value

System.Windows.Forms.TreeNodeCollection

Remarks

If you set Name property for the tree nodes, ensure that it is unique among tree nodes.

See Also