The TextFormatAlign class provides values for text alignment in the TextFormat class.
Variables
inlineread onlyCENTER:TextFormatAlign = 0
Constant; centers the text in the text field. Use the syntax
TextFormatAlign.CENTER
.
inlineread onlyEND:TextFormatAlign = 1
Constant; aligns text to the end edge of a line. Same as right for left-to-right languages and same as left for right-to-left languages.
The END
constant may only be used with the StageText class.
inlineread onlyJUSTIFY:TextFormatAlign = 2
Constant; justifies text within the text field. Use the syntax
TextFormatAlign.JUSTIFY
.
inlineread onlyLEFT:TextFormatAlign = 3
Constant; aligns text to the left within the text field. Use the syntax
TextFormatAlign.LEFT
.
inlineread onlyRIGHT:TextFormatAlign = 4
Constant; aligns text to the right within the text field. Use the syntax
TextFormatAlign.RIGHT
.
inlineread onlySTART:TextFormatAlign = 5
Constant; aligns text to the start edge of a line. Same as left for left-to-right languages and same as right for right-to-left languages.
The START
constant may only be used with the StageText class.