Export menu bar tab in pdf with app designer
5 views (last 30 days)
Show older comments
I am looking to export a menu bar tab I did in an app to a pdf file.
I was able to print the first tab using exportapp, but I am not able to print the others.
Here's my code:
app = AppProductionRapport_V1;
[fileName, filePath] = uiputfile('*.pdf');
exportapp(app.Page1Panel, [filePath fileName]);
0 Comments
Answers (1)
Mario Malic
on 25 Jan 2021
Hello,
You can change the tabs programmatically by GroupTab property SelectedTab, afterwards you can use the exportapp
UITabGroup.SelectedTab = UITabGroup.Children(1)
exportapp
UITabGroup.SelectedTab = UITabGroup.Children(2)
%...
0 Comments
See Also
Categories
Find more on Develop Apps Using App Designer in Help Center and File Exchange
Products
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!