Info

This question is closed. Reopen it to edit or answer.

The art of Full-sceening

1 view (last 30 days)
Greg
Greg on 30 Jul 2013
Closed: MATLAB Answer Bot on 20 Aug 2021
TLDR: F11 for Matlab figure ?
Hi people of the internet,
As you may know, one of the solution to make a clean figure is:
hfig = figure('NumberTitle','off',...
'MenuBar','none',...
'Units','normalized',...
'Position',[0 0 1 1]);
And to maximize this figure programmatically I also use
maxfig(hfig,1)
Well okay, but as you may know, there is still a bar at the top of the figure, the windows bar.
So here is the question: is there a way to really put the figure "full-screen" automatically ?
For instance F11 works perfectly with internet browsers. Is there an equivalent for Matlab figure? Or is there a way to code it? Even en C ?
Thank for your help.

Answers (1)

Jan
Jan on 30 Jul 2013
This allows a fullscreen view to the inner and outer position filling the screen with and without the taskbar, and even cropping the window border such that they do not appear in a multi-monitor setup. A more convenient M-code wrapper is coming soon.

Products

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!