Reputation: 3055
I want to disable the Maximize option of Matlab figure.
Upvotes: 1
Views: 102
Reputation: 24169
There's a figure property you need to change for that:
set(fHandle,'Resize','off');
Upvotes: 4
Reputation: 29064
The MATLAB File Exchange has WindowAPI, which does exactly what you're looking for.
You can crop the complete window border by:
WindowAPI(gcf, 'Clip', true);