Erasing data in GUI

24 visualizaciones (últimos 30 días)
seemal
seemal el 23 de Feb. de 2012
Is there a single command that can clear all the edit text boxes in a GUI?

Respuestas (1)

Jan
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 Interactive Control and Callbacks en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by