Pacote | flashx.textLayout.formats |
Classe | public final class TextAlign |
Herança | TextAlign Object |
Versão da linguagem: | ActionScript 3.0 |
Versões de runtime: | Flash Player 10, AIR 1.5 |
textAlign
e textAlignLast
da classe TextLayoutFormat. Os valores descrevem o alinhamento de linhas no parágrafo em relação ao contêiner.
Elementos da API relacionados
Constante | Definido por | ||
---|---|---|---|
CENTER : String = "center" [estático] Especifica o alinhamento central dentro do contêiner. | TextAlign | ||
END : String = "end" [estático] Especifica o alinhamento com a borda final – o texto é alinhado do lado oposto à ordem de escrita. | TextAlign | ||
JUSTIFY : String = "justify" [estático] Especifica que o texto seja justificado dentro das linhas para caber no espaço do contêiner. | TextAlign | ||
LEFT : String = "left" [estático] Especifica o alinhamento com a borda esquerda. | TextAlign | ||
RIGHT : String = "right" [estático] Especifica o alinhamento com a borda direita. | TextAlign | ||
START : String = "start" [estático] Especifica o alinhamento com a borda inicial – o texto é alinhado de acordo com a ordem de escrita. | TextAlign |
CENTER | Constante |
public static const CENTER:String = "center"
Versão da linguagem: | ActionScript 3.0 |
Versões de runtime: | Flash Player 10, AIR 1.5 |
Especifica o alinhamento central dentro do contêiner.
END | Constante |
public static const END:String = "end"
Versão da linguagem: | ActionScript 3.0 |
Versões de runtime: | Flash Player 10, AIR 1.5 |
Especifica o alinhamento com a borda final – o texto é alinhado do lado oposto à ordem de escrita. Equivalente a definir a direita em um texto da esquerda para a direita, ou a esquerda em um texto da direita para a esquerda.
JUSTIFY | Constante |
public static const JUSTIFY:String = "justify"
Versão da linguagem: | ActionScript 3.0 |
Versões de runtime: | Flash Player 10, AIR 1.5 |
Especifica que o texto seja justificado dentro das linhas para caber no espaço do contêiner.
LEFT | Constante |
public static const LEFT:String = "left"
Versão da linguagem: | ActionScript 3.0 |
Versões de runtime: | Flash Player 10, AIR 1.5 |
Especifica o alinhamento com a borda esquerda.
RIGHT | Constante |
public static const RIGHT:String = "right"
Versão da linguagem: | ActionScript 3.0 |
Versões de runtime: | Flash Player 10, AIR 1.5 |
Especifica o alinhamento com a borda direita.
START | Constante |
public static const START:String = "start"
Versão da linguagem: | ActionScript 3.0 |
Versões de runtime: | Flash Player 10, AIR 1.5 |
Especifica o alinhamento com a borda inicial – o texto é alinhado de acordo com a ordem de escrita. Equivale a definir a esquerda em um texto da esquerda para a direita, ou a direita em um texto da direita para a esquerda.
package flashx.textLayout.formats.examples { import flash.display.Sprite; import flashx.textLayout.container.ContainerController; import flashx.textLayout.elements.ParagraphElement; import flashx.textLayout.elements.SpanElement; import flashx.textLayout.elements.TextFlow; import flashx.textLayout.formats.TextAlign; import flashx.textLayout.formats.TextJustify; public class TextAlignExample extends Sprite { public function TextAlignExample() { var textFlow:TextFlow = new TextFlow(); //create paragraphs and corresponding spans var pCenter:ParagraphElement = new ParagraphElement(); var pJustify:ParagraphElement = new ParagraphElement(); var pRight:ParagraphElement = new ParagraphElement(); var spanCenter:SpanElement = new SpanElement(); var spanJustify:SpanElement = new SpanElement(); var spanRight:SpanElement = new SpanElement(); // add text to the spans spanCenter.text = "Hello, World\n"; spanJustify.text = "Hello, World\n"; spanRight.text = "Hello, World"; // add spans to paragraphs and specify alignment pCenter.addChild(spanCenter); pCenter.textAlign = TextAlign.CENTER; pJustify.addChild(spanJustify); pJustify.textAlign = TextAlign.JUSTIFY; pJustify.textJustify = TextJustify.DISTRIBUTE; pRight.addChild(spanRight); pRight.textAlign = TextAlign.RIGHT; // add paragraphs to TextFlow textFlow.addChild(pCenter); textFlow.addChild(pJustify); textFlow.addChild(pRight); // update controller to display textFlow.flowComposer.addController(new ContainerController(this,80,800)); textFlow.flowComposer.updateAllControllers(); } } }
Wed Jun 13 2018, 11:10 AM Z