Borrar filtros
Borrar filtros

File handling code for popup menu in gui

1 visualización (últimos 30 días)
Senthuran
Senthuran el 20 de Sept. de 2012
I want to know the coding which is used to transfer the details in a popupmenu to a text file?
  1 comentario
Jan
Jan el 20 de Sept. de 2012
What are the "details in a popupmenu"?

Iniciar sesión para comentar.

Respuestas (1)

Kevin Claytor
Kevin Claytor el 20 de Sept. de 2012
You can use the get command;
get(handles.mypopup)
Or for specific cases;
get(handles.mypopup,'string'); % returns all strings in the popup
get(handles.mypopup,'value'); % returns the current popup selection 1,2,3,...

Categorías

Más información sobre Migrate GUIDE Apps 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