Erasing data in GUI
24 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Is there a single command that can clear all the edit text boxes in a GUI?
0 comentarios
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', '');
0 comentarios
Ver también
Categorías
Más información sobre Interactive Control and Callbacks en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!