Docked figures tabs postion from top to left in code?
7 views (last 30 days)
Show older comments
How I can change docked figures tabs postion from top to left in code ?

0 Comments
Accepted Answer
Yazan
on 16 Dec 2021
f = figure;
tg = uitabgroup(f, 'TabLocation', 'right');
tab1 = uitab(tg, 'Title', 'Figure 1');
tab2 = uitab(tg, 'Title', 'Figure 2');
0 Comments
More Answers (0)
See Also
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!