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中对齐最后一行。请帮助...

最佳答案

您可以使用textAlignLast属性:

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

10-08 12:09