Erasing data in GUI
Mostrar comentarios más antiguos
Is there a single command that can clear all the edit text boxes in a GUI?
Respuestas (1)
Jan
el 23 de Feb. de 2012
With GUI_handle is the handle of the GUI figure:
EditH = findobj(GUI_handle, 'flat', 'Style', 'edit');
set(EditH, 'String', '');
Categorías
Más información sobre App Building en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!