API / geotoolkit / attributes / TextStyle / AlignmentStyle

Enumeration: AlignmentStyle

attributes.TextStyle.AlignmentStyle

Enum of alignment https://developer.mozilla.org/en-US/docs/Web/CSS/text-align

Table of contents

Enumeration Members

Contents

Enumeration Members

Center

Center = "center"

Center The inline contents are centered within the line box.


End

End = "end"

End The same as right if direction is left-to-right and left if direction is right-to-left.


Justify

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"

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"

Start The same as left if direction is left-to-right and right if direction is right-to-left.