OD_ORDER
enum OD_ORDER {
OD_ORDER_FRONT,
OD_ORDER_BACK,
OD_ORDER_FORWARD,
OD_ORDER_BACKWARD,
};
Different ways to change the order of components.
The order determines the layering of the components -- the order
in which they are drawn. The components int the front of the order
are drawn on top of those in the back of the order.Defined in: OdGlobal.h
Members
OD_ORDER_FRONT
Bring to the front of the order
OD_ORDER_BACK
Send to back of the order
OD_ORDER_FORWARD
Bring forward one in the order
OD_ORDER_BACKWARD
Move backward one in the order






