필터 지우기
필터 지우기

File handling code for popup menu in gui

조회 수: 1 (최근 30일)
Senthuran
Senthuran 2012년 9월 20일
I want to know the coding which is used to transfer the details in a popupmenu to a text file?
  댓글 수: 1
Jan
Jan 2012년 9월 20일
What are the "details in a popupmenu"?

댓글을 달려면 로그인하십시오.

답변 (1개)

Kevin Claytor
Kevin Claytor 2012년 9월 20일
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,...

카테고리

Help CenterFile Exchange에서 Migrate GUIDE Apps에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by