File handling code for popup menu in gui
조회 수: 2 (최근 30일)
이전 댓글 표시
I want to know the coding which is used to transfer the details in a popupmenu to a text file?
답변 (1개)
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,...
댓글 수: 0
참고 항목
카테고리
Help Center 및 File Exchange에서 Environment and Settings에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!