Flex 3中textArea的最后一行对齐方式

时间:2012-09-04 10:19:11

标签: css actionscript-3 flash flex

txtArea.setStyle("textAlign","justify");

显示

等文字
textSample textSample textSample textSample textSample textSample textSample textSample
textSample textSample textSample textSample textSample textSample textSample textSample
textSample textSample textSample textSample textSample textSample textSample textSample
textSample

文本区域中的最后一行不合理。是否可以在flex 3中对齐最后一行。请帮助......

1 个答案:

答案 0 :(得分:0)

您可以使用textAlignLast属性:

txtArea.setStyle("textAlign", "justify");
txtArea.setStyle("textAlignLast", "justify"); /*or "center", "left", "right"*/