Unable to "read" Text Area
2Â vues (au cours des 30Â derniers jours)
Afficher commentaires plus anciens
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Â commentaire
Diwakar Diwakar
le 30 Mai 2023
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.
Réponses (1)
Image Analyst
le 30 Mai 2023
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.
2Â commentaires
Voir également
Catégories
En savoir plus sur Whos dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!