Infragistics2.Win.UltraWinTree.v8.1
HasNodes Property
See Also 
Infragistics.Win.UltraWinTree Namespace > UltraTreeNode Class : HasNodes Property

Returns true if there is a least 1 child node in this node's UltraTreeNode.Nodes collection.

Syntax

Visual Basic (Declaration) 
Public ReadOnly Property HasNodes As Boolean
C# 
public bool HasNodes {get;}

Remarks

The advantage of checking this property instead of the Count property of the UltraTreeNode.Nodes collection is that it won't allocate the collection if it doesn't already exist.

See Also