如何使用'\n'在 Flex 4 中 mx:TextArea 的文本属性内?

发布于 2024-11-30 07:49:57 字数 369 浏览 1 评论 0原文

根据我的观察,这在 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

玩世 2024-12-07 07:49:57

看来唯一的方法是使用以下内容:

<mx:TextArea horizontalCenter="0" id="taMytext" text="{'\n'} hi{'\n'} san" verticalCenter="0" />

It seems the only way is to use the following:

<mx:TextArea horizontalCenter="0" id="taMytext" text="{'\n'} hi{'\n'} san" verticalCenter="0" />
勿挽旧人 2024-12-07 07:49:57

您必须使用以下语法:

<mx:TextArea id="taMytext" text="\n hi{'\n'} san"/>

更详细的解释可以在 adobe Cookbooks 中找到

You have to use the following syntax:

<mx:TextArea id="taMytext" text="\n hi{'\n'} san"/>

More detailled explaination can be found on adobe cookbooks

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文