gcbf.m
来自「matlab6.5」· M 代码 · 共 19 行
M
19 行
function fig = gcbf
%GCBF Get handle to current callback figure.
% FIG = GCBF returns the handle of the figure that contains the object
% whose callback is currently executing. If the current callback object
% is the figure, the figure is returned.
%
% When no callbacks are executing, GCBF returns []. If the current figure
% gets deleted during callback execution, GCBF returns [].
%
% The return value of GCBF is identical to the FIGURE output argument of
% GCBO.
%
% See also GCBO, GCO, GCF, GCA.
% Copyright 1984-2002 The MathWorks, Inc.
% $Revision: 1.10 $ $Date: 2002/04/08 22:41:29 $
[obj, fig] = gcbo;
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?