How to download GUI screen using push button in appdesigner
2 次查看(过去 30 天)
显示 更早的评论
Hi,
I need to download the GUI Screen with interactive plots (In the attached GUI, plots are not there) using push button from appdesigner. Please help me with this. I need the user to specify the path and file name for the figure.
butdown = uicontrol('Style', 'pushbutton', 'String', 'download',...
'units','pixels','Position', [500-wButt-wGapIPRow/2 20 wButt hButt],'fontsize', 15,'fontweight','bold','BackgroundColor',Colrs(13,:),'Foregroundcolor',[1 1 1],...
'Callback','uiresume(gcbf);sRespIp=''EndExit'';');
if butdown
fig = gcf;
fig.InvertHardcopy = 'off';
set(fig,'PaperPositionMode','auto');
print(fig,'-dpdf','test_gui.pdf')
end
3 个评论
Jan
2021-7-15
Sorry, I do not understand, where exactly you want to achieve which action. I suggest that you split the problem into small parts and solve one after the other. Maybe then it becomes more clear, which code can be suggested.
回答(0 个)
另请参阅
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!