ShiftType
Description
Describes ways of object shifting
Values of this enumeration:
- Any - Object is shifted along both axes.
- Horizontal - Shifts are performed along horizontal, or X axis.
- Vertical - Shifts are performed along Vertical, or Y axis.
namespace ShiftType
{
enum Type
{
Any,
Horizontal,
Vertical
};
}
