maximize figure windows

Maximize figure windows by using the Microsoft Windows application programming interface (API).
15.5K Downloads
Updated 5 Jun 2007

No License

Unzip the files and change the the "Current Directory" in MATLAB. Afterwards you can use the function "maximize.m". This function does the same as pressing the "maximize" button on the top right of the window. When you press the "maximize" button after using this function, the figure window will restore to its previous size.
The function is specific to Mircosoft Windows.

Examples:

maximize the current figure
----------------------------
maximize;

maximize the current figure
----------------------------
maximize(gcf);

maximize the specified figure
------------------------------
h = figure;
maximize(h);

maximize the application window
--------------------------------
maximize(0);

maximize more than one figure
------------------------------
h(1) = figure;
h(2) = figure;
maximize(h);

maximize all figures
---------------------
maximize('all');

maximize a GUI in the OpeningFcn
---------------------------------

% --- Executes just before untitled is made visible.
function untitled_OpeningFcn(hObject, eventdata, handles, varargin)
% This function has no output args, see OutputFcn.
% hObject handle to figure
% eventdata reserved - to be defined in a future version of MATLAB
% handles structure with handles and user data (see GUIDATA)
% varargin command line arguments to untitled (see VARARGIN)

% Choose default command line output for untitled
handles.output = hObject;

% Update handles structure
guidata(hObject, handles);

% UIWAIT makes untitled wait for user response (see UIRESUME)
% uiwait(handles.figure1);

% maximize the GUI
set(hObject,'Visible','on');
maximize(hObject);

Cite As

Alain Trostel (2024). maximize figure windows (https://www.mathworks.com/matlabcentral/fileexchange/10274-maximize-figure-windows), MATLAB Central File Exchange. Retrieved .

MATLAB Release Compatibility
Created with R13
Compatible with any release
Platform Compatibility
Windows macOS Linux
Categories
Find more on Interactive Control and Callbacks in Help Center and MATLAB Answers

Community Treasure Hunt

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

Start Hunting!
Version Published Release Notes
1.0.0.0

new example (OpeningFcn, GUI)