LayoutItemInsertPosition Type
Lists values that specify the position of the inserted layout item.
Declaration
export type LayoutItemInsertPosition = "left" | "right" | "top" | "bottom"
Members
Name | Description |
---|---|
"left" | A position to the left of the current layout item/group. |
"right" | A position to the right of the current layout item/group. |
"top" | A position above the current layout item/group. |
"bottom" | A position below the current layout item/group. |
Remarks
Use the moveTo(targetItem, position) method to move the layout item/group.