Function Node.raise
Moves this node to the bottom of parent node's children hierarchy. This is often useful in GUIs (Control
nodes), because their order of drawing depends on their order in the tree, i.e. the further they are on the node list, the higher they are drawn. After using raise
, a Control will be drawn on top of their siblings.
void raise() nothrow @nogc;