XMLNode.PreviousSibling
From Xojo Documentation
Read-Only Property (As XMLNode )
The preceding 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 shows how to walk in reverse over the team nodes in the above XML and displays each team name: