Package | flash.text |
Class | public final class TextFormatAlign |
Inheritance | TextFormatAlign Object |
Language Version: | ActionScript 3.0 |
Runtime Versions: | AIR 1.0, Flash Player 9, Flash Lite 4 |
Related API Elements
Constant | Defined By | ||
---|---|---|---|
CENTER : String = "center" [static]
Constant; centers the text in the text field. | TextFormatAlign | ||
END : String = "end" [static]
Constant; aligns text to the end edge of a line. | TextFormatAlign | ||
JUSTIFY : String = "justify" [static]
Constant; justifies text within the text field. | TextFormatAlign | ||
LEFT : String = "left" [static]
Constant; aligns text to the left within the text field. | TextFormatAlign | ||
RIGHT : String = "right" [static]
Constant; aligns text to the right within the text field. | TextFormatAlign | ||
START : String = "start" [static]
Constant; aligns text to the start edge of a line. | TextFormatAlign |
CENTER | Constant |
public static const CENTER:String = "center"
Language Version: | ActionScript 3.0 |
Runtime Versions: | AIR 1.0, Flash Player 9, Flash Lite 4 |
Constant; centers the text in the text field.
Use the syntax TextFormatAlign.CENTER
.
Related API Elements
END | Constant |
public static const END:String = "end"
Language Version: | ActionScript 3.0 |
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.
Related API Elements
JUSTIFY | Constant |
public static const JUSTIFY:String = "justify"
Language Version: | ActionScript 3.0 |
Runtime Versions: | AIR 1.0, Flash Player 9, Flash Lite 4 |
Constant; justifies text within the text field.
Use the syntax TextFormatAlign.JUSTIFY
.
Related API Elements
LEFT | Constant |
public static const LEFT:String = "left"
Language Version: | ActionScript 3.0 |
Runtime Versions: | AIR 1.0, Flash Player 9, Flash Lite 4 |
Constant; aligns text to the left within the text field.
Use the syntax TextFormatAlign.LEFT
.
Related API Elements
RIGHT | Constant |
public static const RIGHT:String = "right"
Language Version: | ActionScript 3.0 |
Runtime Versions: | AIR 1.0, Flash Player 9, Flash Lite 4 |
Constant; aligns text to the right within the text field.
Use the syntax TextFormatAlign.RIGHT
.
Related API Elements
START | Constant |
public static const START:String = "start"
Language Version: | ActionScript 3.0 |
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.
Related API Elements
Thu Dec 6 2018, 01:12 PM -08:00