Unable to "read" Text Area
2 次查看(过去 30 天)
显示 更早的评论
I've got an application that allows a user to enter a lot of information using common Matlab GUI elements such as text boxes, check boxes etc. etc. I've also got some "Text Areas" to allow them to enter more detailed information.
When I try to read it I get error messages and don't see that I'm doing anything wrong, didn't spot anyting obvious in quick search seems like should be a simple one?
My text ares is NotesGeneral:
selection.TypeText(['General Notes: ' app.NotesGeneral.Value]);
This returns:
No method 'TypeText' with matching signature found for class
'Interface.00020975_0000_0000_C000_000000000046'.
I've confrimed name/no typos.
Thanks for any feedback!
1 个评论
Diwakar Diwakar
2023-5-30
It seems like you're trying to use the TypeText method on the selection object. However, the error indicates that this method is not available or does not exist for that object.
Check if the method TypeText is available in the class Interface and Make sure that the class or object you are using supports the TypeText method.
If you provide more context or code snippets surrounding this line, I might be able to assist you further.
回答(1 个)
Image Analyst
2023-5-30
Good one: "I've confrimed name/no typos." and "My text ares is..." Ha ha. 🤣
Anyway what is selection and selection.TypeText? And what are you trying to do? Are you trying to construct the string ['General Notes: ' app.NotesGeneral.Value] and put that into another static text label or edit text box? I don't know what those things are but maybe you want to do
app.textLabel.Value = ['General Notes: ', app.NotesGeneral.Value];
where textLabel is the name of the text control that you want to have that string in.
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Whos 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!