Update a text object's position used with a movable rectangle.
1 次查看(过去 30 天)
显示 更早的评论
Quick question,
Lets say i have created a rectangle using
h(i) = imrect(gca, [1,1,4,4]);
and then i add a text object with the rectangles name or some data
text(1,1,num2str(1),'BackgroundColor',[.7 .9 .7],'FontSize',7);
How can i make the text follow the rectangle at its final position after i move it?
0 个评论
采纳的回答
Walter Roberson
2012-7-19
You might be able to do it by registering a listener on the imrect position, with the callback changing the rectangle position.
There is no standard mechanism for doing this. The closest would be linkprop() but that is for identical property names and meaning; I doubt you want the text() size to be as big as the rectangle.
更多回答(0 个)
另请参阅
产品
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!