"itemAbove", itemBelow"

"itemAbove"; returns the item above this specified item and "itemBelow"; the item below this specified item of the same level (or parent).

Synopsis

shape.itemAbove(string Id);

shape.itemBelow(string Id);

Parameters

Parameter Description
shape Object name
Id Die Element-ID

Description

"itemAbove"; returns the item above this specified item and "itemBelow"; the item below this specified item of the same level (or parent).

Example

The following example returns the item above the item "PART5".

main()
{
  DebugN(TREE1.itemAbove("PART5"));
}

Assignment

Tree widget