Direction
Defines the direction in which items are placed in the container.
- Bases
- enum.Enum
Attributes
- Name
COLUMN_ROW
- Type
- Value
= enum.auto()
- Description
Starting at the top left corner, moving from top to bottom, then from left to right.
- Name
COLUMN_REVERSE_ROW
- Type
- Value
= enum.auto()
- Description
Starting at the bottom left corner, moving from bottom to top, then from left to right.
- Name
COLUMN_ROW_REVERSE
- Type
- Value
= enum.auto()
- Description
Starting at the top right corner, moving from top to bottom, then from right to left.
- Name
COLUMN_REVERSE_ROW_REVERSE
- Type
- Value
= enum.auto()
- Description
Starting at the bottom right corner, moving from bottom to top, then from right to left.
- Name
ROW_COLUMN
- Type
- Value
= enum.auto()
- Description
Starting at the top left corner, moving from left to right, then from top to bottom.
- Name
ROW_COLUMN_REVERSE
- Type
- Value
= enum.auto()
- Description
Starting at the bottom left corner, moving from left to right, then from bottom to top.
- Name
ROW_REVERSE_COLUMN
- Type
- Value
= enum.auto()
- Description
Starting at the top right corner, moving from right to left, then from top to bottom.
- Name
ROW_REVERSE_COLUMN_REVERSE
- Type
- Value
= enum.auto()
- Description
Starting at the bottom right corner, moving from right to left, then from bottom to top.