File handling code for popup menu in gui
이전 댓글 표시
I want to know the coding which is used to transfer the details in a popupmenu to a text file?
댓글 수: 1
Jan
2012년 9월 20일
What are the "details in a popupmenu"?
답변 (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,...
카테고리
도움말 센터 및 File Exchange에서 Symbolic Math Toolbox에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!