Smalltalk 文本编辑器小部件打印新行

发布于 2024-10-18 11:05:25 字数 133 浏览 5 评论 0原文

我正在使用 Cincom VisualWorks 并使用 TextEditor 小部件。我能够向这个小部件写入数据,但在我的一生中,我无法打印新行(或回车)字符。在“Transcript: cr”中使用“cr”在此小部件中不起作用。有人知道该怎么办吗?

I am using Cincom VisualWorks and using the TextEditor widget. I am able to write data to this widget but for the life of me, I am unable to print new line (or carraige return) characters. Using "cr" as in for "Transcript: cr" doesn't work in this widget. Does anyone know what to do?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

国际总奸 2024-10-25 11:05:25

有一个方法 #setText:,根据系统的不同,您可能需要 CR 和 LF:

myTextEditorWidget setText: 'line1', Character cr asString, Character lf asString, 'line2'.

如果 #setText: 方法尚未定义,您可以通过将其作为访问器添加到类中来实现;假设您告诉 UIBuilder 文本字段的名称为 myText,那么您可以添加以下方法:

myTextEditorWidget myText: 'line1', Character cr asString, Character lf asString, 'line2'.

There is a method #setText:, and depending on the system you might need CR and LF:

myTextEditorWidget setText: 'line1', Character cr asString, Character lf asString, 'line2'.

if the #setText: method is not defined yet you can do so by adding this as an accessor to the class; say you told the UIBuilder that the text-field has name myText, then you can add the method:

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