How to access 'TextBox' in viewArray figure
9 ビュー (過去 30 日間)
古いコメントを表示
After viewArray plot the array structure, I would like to move the position of the 'TestBox' in the figure, but I do not know how to access the Position of the 'TextBox'. Please see attached example, I like to move the 'TextBox' at right-low corner to other position in the figure
0 件のコメント
採用された回答
Honglei Chen
2017 年 12 月 21 日
Once you run viewArray, you can do
findall(gcf,'Type','TextBox')
It should return the all text boxes in the figure and you can find the one corresponding to the annotation. Then simply set the Position property of that handle and you can move the box.
HTH
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Array Geometries and Analysis についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!