Azzera filtri
Azzera filtri

Erasing data in GUI

1 visualizzazione (ultimi 30 giorni)
seemal
seemal il 23 Feb 2012
Is there a single command that can clear all the edit text boxes in a GUI?

Risposte (1)

Jan
Jan il 23 Feb 2012
With GUI_handle is the handle of the GUI figure:
EditH = findobj(GUI_handle, 'flat', 'Style', 'edit');
set(EditH, 'String', '');

Categorie

Scopri di più su Migrate GUIDE Apps in Help Center e File Exchange

Tag

Community Treasure Hunt

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

Start Hunting!

Translated by