Skip to main content

TreeListNode.LastNode Property

Gets the last child node.

Namespace: DevExpress.XtraTreeList.Nodes

Assembly: DevExpress.XtraTreeList.v23.2.dll

NuGet Packages: DevExpress.Win.Navigation, DevExpress.Win.TreeList

Declaration

[Browsable(false)]
public virtual TreeListNode LastNode { get; }

Property Value

Type Description
TreeListNode

A TreeListNode object which represents the last child node. null (Nothing in Visual Basic) if the current node has no child nodes.

Remarks

Each node can have children. The child nodes are contained within their parent’s TreeListNode.Nodes collection. The LastNode method returns the last element in this collection.

See Also