Smalltalk 文本编辑器小部件打印新行
我正在使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
有一个方法 #setText:,根据系统的不同,您可能需要 CR 和 LF:
如果 #setText: 方法尚未定义,您可以通过将其作为访问器添加到类中来实现;假设您告诉 UIBuilder 文本字段的名称为 myText,那么您可以添加以下方法:
There is a method #setText:, and depending on the system you might need CR and LF:
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: