Why does findobj not work with annotation tags?

2 ビュー (過去 30 日間)
yosey
yosey 2013 年 3 月 23 日
When I create an annotation with a Tag and use findobj the result is empty.
an = annotation('textbox',[0 0 1 1],'string','Hallo','Tag','annotation');
findobj('Tag','annotation')
  1 件のコメント
Walter Roberson
Walter Roberson 2013 年 3 月 23 日
Is it possible that the handle is hidden ?

サインインしてコメントする。

採用された回答

per isakson
per isakson 2013 年 3 月 24 日
編集済み: per isakson 2013 年 3 月 24 日
findall returns the hg-handle. However, I find it strange that findobj fails, since HandleVisibility is on (by default). Matlab seems to behave this way and documentation is hard to read.
>> an = annotation('textbox',[0 0 1 1],'string','Hello','Tag','annotation');
>> h1 = findobj('Tag','annotation')
h1 =
Empty matrix: 0-by-1
>> h2 = findall(0,'Tag','annotation')
h2 =
178.0016
>> get( h2, 'HandleVis' )
ans =
on
>>
With R2012a,64bit,Win7
.
@Walter
Yes, an and h2 seems to be the same
....
>> [an,h2]
ans =
178.0024 178.0024
>> get( [an,h2], 'type' )
ans =
'hggroup'
'hggroup'
>> get( [an,h2], 'tag' )
ans =
'annotation'
'annotation'
>>
However, you spotted the cause
>> axh = get( h2, 'parent' )
axh =
173.0024
>> get( axh, 'HandleVis' )
ans =
off
annotation returns the handle of a hggroup, which is the child of an axes the HandleVisibility of which is off.
  2 件のコメント
Walter Roberson
Walter Roberson 2013 年 3 月 24 日
but is h2 the same as "an" ?
If the object that got tagged got created as a child of something with an invisible handle, what you describe would be the result.
yosey
yosey 2013 年 3 月 24 日
Thank you both.

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeGraphics Object Programming についてさらに検索

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by