Export menu bar tab in pdf with app designer

14 views (last 30 days)
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]);

Answers (1)

Mario Malic
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)
%...

Categories

Find more on Networks 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!