MATLAB: Change line from Guide to Appdesigner

app designerdropdownguideMATLAB

How could you write this line from Guide,
set(handles.popupmenu2, 'String', num2str((1:65)'));
In app designer using app.DropDown?
Thank you

Best Answer

app.DropDown.Items = cellstr(num2str((1:65)'));