time | Calls | line |
---|
| | 1 | function fig = gcbf
|
| | 2 | %GCBF Get handle to current callback figure.
|
| | 3 | % FIG = GCBF returns the handle of the figure that contains the object
|
| | 4 | % whose callback is currently executing. If the current callback object
|
| | 5 | % is the figure, the figure is returned.
|
| | 6 | %
|
| | 7 | % When no callbacks are executing, GCBF returns []. If the current figure
|
| | 8 | % gets deleted during callback execution, GCBF returns [].
|
| | 9 | %
|
| | 10 | % The return value of GCBF is identical to the FIGURE output argument of
|
| | 11 | % GCBO.
|
| | 12 | %
|
| | 13 | % See also GCBO, GCO, GCF, GCA.
|
| | 14 |
|
| | 15 | % Copyright 1984-2017 The MathWorks, Inc.
|
| | 16 |
|
< 0.001 | 20 | 17 | [~, fig] = gcbo;
|
Other subfunctions in this file are not included in this listing.