我已經在使用PythoncardPythoncard textarea的如何設置文本
問題是我的Python項目創建一個文本,我不知道如何調用它在我的項目更改文本。它被稱爲myTextArea。
感謝
我已經在使用PythoncardPythoncard textarea的如何設置文本
問題是我的Python項目創建一個文本,我不知道如何調用它在我的項目更改文本。它被稱爲myTextArea。
感謝
請參閱TextArea文檔瀏覽:http://pythoncard.sourceforge.net/framework/components/TextArea.html
我想你要使用的方法是AppendText通過和WRITETEXT
從PythonCard生成的GUI類中:
self.components.myTextArea.clear() ## clear the TextArea
self.components.myTextArea.text = "initial text" ## directly set text
self.components.myTextArea.appendText("\nhello world") ## append text
self.components.myTextArea.writeText("\nhello world2") ## append text