如何使用'\n'在 Flex 4 中 mx:TextArea 的文本属性内?
根据我的观察,这在 flex4 中不起作用:
<mx:TextArea id="taMytext" text="\n hi\n san"/> //use of \n does not work here
<s:Button label="Click it" click="Myfun()" />
使用脚本是可能的:
public function Myfun():void
{
taMytext.text="hi\n";
taMytext.text+="san";
}
As per my observation this does not work in flex4:
<mx:TextArea id="taMytext" text="\n hi\n san"/> //use of \n does not work here
<s:Button label="Click it" click="Myfun()" />
Using script it's possible:
public function Myfun():void
{
taMytext.text="hi\n";
taMytext.text+="san";
}
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
看来唯一的方法是使用以下内容:
It seems the only way is to use the following:
您必须使用以下语法:
更详细的解释可以在 adobe Cookbooks 中找到
You have to use the following syntax:
More detailled explaination can be found on adobe cookbooks