XMLNode.LastChild

From Xojo Documentation

Read-Only Property (As XMLNode )
XMLNodeValue = aXMLNode.LastChild

Supported for all project types and targets.

The last child of this node.

Read-Only Property (As XMLNode )
XMLNodeValue = aXMLNode.FirstChild

Supported for all project types and targets.

The first child of this node.

Examples

The example code below uses this XML. Assign it to a constant called kXML:

 <?xml version="1.0" encoding="UTF-8"?>
 <League>
 	<Team name="Seagulls">
 		<Player name="Bob" position="1B" />
 		<Player name="Tom" position="2B" />
 	</Team>
 	<Team name="Pigeons">
 		<Player name="Bill" position="1B" />
 		<Player name="Tim" position="2B" />
 	</Team>
 	<Team name="Crows">
 		<Player name="Ben" position="1B" />
 		<Player name="Ty" position="2B" />
 	</Team>
 </League>

This example displays the last team in the League XML:

Var xml As New XmlDocument(kXML)

MessageBox("Last Team in League: " + xml.DocumentElement.LastChild.GetAttribute("name"))