How can i reset axes and edittext?
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
I have a GUI that with 2 axes and 2 edittext. I would like to clear those with a button. how can i do this? thanks
0 comentarios
Respuesta aceptada
Grzegorz Knor
el 7 de Nov. de 2012
So add a button and in its callback fucntion write code which clear axis and edittext field.
i.e.
cla(handles.axis1)
set(handles.Edit1,'String','')
Of course handles.axis1 and handles.Edit1 you have to change to your own handles.
Más respuestas (0)
Ver también
Categorías
Más información sobre Strategy & Logic 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!