AS3格式化TextArea组件的文本
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了AS3格式化TextArea组件的文本相关的知识,希望对你有一定的参考价值。
To style the text in a TextArea component, create a TextFormat object and pass it to the TextArea's setStyle method.
import flash.text.TextFormat; import fl.controls.TextArea; import fl.managers.StyleManager; var myTextArea:TextArea = new TextArea(); myTextArea.setSize(200, 100); myTextArea.text = "Hello World"; var myTextFormat:TextFormat = new TextFormat(); myTextFormat.font = "Arial"; myTextFormat.size = 18; myTextFormat.bold = true; myTextFormat.italic = true; myTextFormat.underline = true; myTextArea.setStyle("textFormat", myTextFormat); myTextArea.x = 30; myTextArea.y = 30; addChild(myTextArea); // To set ALL TextAreas to this style use ... // StyleManager.setComponentStyle(TextArea, "textFormat", myTextFormat);
以上是关于AS3格式化TextArea组件的文本的主要内容,如果未能解决你的问题,请参考以下文章
AS3里【TextField】于【TextArea】有啥区别?
ActionScript 3 AS3防止TextArea组件中的多线