Я создал текстовую область в своем проекте Python, используя Pythoncard
Проблема в том, что я не знаю, как вызвать это в моем проекте, чтобы изменить текст. Это называется myTextArea.
Спасибо
Из сгенерированного PythonCard класса графического интерфейса:
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
см. Документ TextArea здесь: http://pythoncard.sourceforge.net/framework/components/TextArea.html
Я думаю, что вы хотите использовать следующие методы: appendText и writeText