nonmodalfigs.m

来自「toolbox of BVQX, This is the access betw」· M 代码 · 共 36 行

M
36
字号
function nonmodalfigs% nonmodalfigs  - sets all figures to non-modal mode%% FORMAT:       nonmodalfigs;%% No input/output fields.% Version:      v0.7b% Build:        7090119% Date:         Sep-01 2007, 7:29 PM CEST% Author:       Jochen Weber, Brain Innovation, B.V., Maastricht, NL% URL / Info:   http://wiki.brainvoyager.com/BVQXtools%  show all figures!try    ssh = get(0, 'ShowHiddenHandles');    set(0, 'ShowHiddenHandles', 'on');catch    ssh = false;end%  get figures and set window style to normaltry    f = findobj('Type', 'figure');    set(f, 'WindowStyle', 'normal');catch    % do nothingend% reset ShowHiddenHandles settingtry    set(0, 'ShowHiddenHandles', ssh);catch    % do nothingend

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?