Climb Up
- Last UpdatedMay 24, 2022
- 1 minute read
The following syntax is valid:
|
OWNER |
climb to owning element. The owning element becomes the Current Element (CE). The current position is then before the first member |
|
END |
climbs to owning element. The owning element becomes the CE. The current position is at the previous element |
|
<Element type> |
climb to element of that type. This element becomes the new CE. This leaves the current position at the immediate member element that was climbed through. |
For example, consider the following hierarchy:
/*
/MYSITE
/MYZONE
/MYEQUI
/MYBOX
If the CE is /MYBOX, then:
|
OWNER |
The CE becomes /MYEQUI. The current position is now before the first member. |
|
END |
Also climbs to /MYEQUI, but leaves the current position at /MYBOX |
|
EQUI |
Also climbs to /MYEQUI, and leaves the current position at /MYBOX |
|
SITE |
Climbs to /MYSITE, and leaves the current position at /MYZONE |