How to get Figure Container's Properties?
20 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
How can I get and set the properties of a Figure Container introduced in MATLAB 2025?
For example, I want to change the window state of a Figure Container (not the figure window state) to “Maximized” from a script.
0 Commenti
Risposte (2)
Taylor
circa 9 ore fa
You can still just set the window state to maximized. It will force the figure container to be maximized.
figure("WindowState", "maximized")
Or are you trying to maximize the container without changing the size of the figure itself? If so, I do not believe that is possible.
0 Commenti
Naoto Nagaoka
circa 16 ore fa
1 Commento
Taylor
circa 2 ore fa
You can edit the default properties. See this if you want the properties to persist across MATLAB sessions.
Vedere anche
Categorie
Scopri di più su Interactive Control and Callbacks in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!