time | Calls | line |
---|
| | 50 | function ret = dosupport(~,hTarget)
|
| | 51 | % only allowed on Figure, Axes, and ScribeGrid
|
0.001 | 16 | 52 | ret = ishghandle(hTarget, 'Figure') || ...
|
| 16 | 53 | ishghandle(hTarget, 'Axes') || ...
|
| 16 | 54 | ishghandle(hTarget, 'polaraxes') || ...
|
| 16 | 55 | ishghandle(hTarget, 'geoaxes') || ...
|
| 16 | 56 | ishghandle(hTarget, 'Legend') || ...
|
| | 57 | (ishghandle(hTarget) && ...
|
| | 58 | (isa(hTarget, 'matlab.graphics.shape.internal.ScribeGrid') || ...
|
| | 59 | isa(hTarget, 'matlab.graphics.chart.Chart') || ...
|
| | 60 | isa(hTarget, 'matlab.graphics.controls.AxesToolbar') || ...
|
| | 61 | isa(hTarget, 'bigimageshow') || ...
|
| | 62 | isa(hTarget, 'matlab.graphics.shape.internal.PointDataTip')) || ...
|
| | 63 | isa(hTarget, 'matlab.graphics.primitive.world.CompositeMarker'));
|
| | 64 |
|
< 0.001 | 16 | 65 | end
|
Other subfunctions in this file are not included in this listing.