layout property
The layout of this positioned object. Possible string values are:
- "POSITIONED_OBJECT_LAYOUT_UNSPECIFIED" : The layout is unspecified.
- "WRAP_TEXT" : The text wraps around the positioned object.
- "BREAK_LEFT" : Breaks text such that the positioned object is on the left and text is on the right.
- "BREAK_RIGHT" : Breaks text such that the positioned object is on the right and text is on the left.
- "BREAK_LEFT_RIGHT" : Breaks text such that there's no text on the left or right of the positioned object.
- "IN_FRONT_OF_TEXT" : The positioned object is in front of the text.
- "BEHIND_TEXT" : The positioned object is behind the text.
Implementation
core.String? layout;