API / geotoolkit / attributes / TextStyle / AlignmentStyle
attributes.TextStyle.AlignmentStyle
Enum of alignment https://developer.mozilla.org/en-US/docs/Web/CSS/text-align
Enumeration Members
• Center = "center"
Center The inline contents are centered within the line box.
• End = "end"
End The same as right if direction is left-to-right and left if direction is right-to-left.
• Justify = "justify"
Justify The inline contents are justified. Text should be spaced to line up its left and right edges to the left and right edges of the line box, except for the last line.
• Left = "left"
Left (Default) The inline contents are aligned to the left edge of the line box.
• Right = "right"
Right The inline contents are aligned to the right edge of the line box.
• Start = "start"
Start The same as left if direction is left-to-right and right if direction is right-to-left.