Erasing data in GUI
1 vue (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Is there a single command that can clear all the edit text boxes in a GUI?
0 commentaires
Réponses (1)
Jan
le 23 Fév 2012
With GUI_handle is the handle of the GUI figure:
EditH = findobj(GUI_handle, 'flat', 'Style', 'edit');
set(EditH, 'String', '');
0 commentaires
Voir également
Catégories
En savoir plus sur Migrate GUIDE Apps 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!