Filter löschen
Filter löschen

Erasing data in GUI

2 Ansichten (letzte 30 Tage)
seemal
seemal am 23 Feb. 2012
Is there a single command that can clear all the edit text boxes in a GUI?

Antworten (1)

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

Kategorien

Mehr zu Migrate GUIDE Apps finden Sie in Help Center und File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by