copy the item in drop-down list of app designer
조회 수: 2 (최근 30일)
이전 댓글 표시
Hi:
is there any way to copy the item in drop-down list of app designer?
Thanks!
Yu
댓글 수: 2
Alok Nimrani
2019년 1월 2일
Hi Yu,
Is it that you want to make a duplicate item by copying an existing one from the drop-down list? If not, could you please elaborate on your use-case and also the end goal that you are trying to achieve?
Thanks,
Alok
답변 (1개)
Alok Nimrani
2019년 1월 4일
Hi Yu,
In order to get the folder names displayed in the drop down list, you can create a cell array containing these items as follows:
>> nameList = app.DropDown.Items;
where 'DropDown' is the name of the drop down object that you want to use.
In addition, you can get only the current selected value as follows:
>> currentValue = app.DropDown.Value;
Hope this helps.
Regards,
Alok
참고 항목
카테고리
Help Center 및 File Exchange에서 Develop Apps Using App Designer에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!