getting the ID of the line which just has been clicked on
2 次查看(过去 30 天)
显示 更早的评论
hi,
I have a varying set of lines which shall be displayed. Clicking on one of the lines some actions have to be performed which are specific for that line, i.e every line has its own set of actions. The lines are painted by h(i) = imline(parent, pos(i)); Now I need one callback function which is called whenevery one of the lines has been clicked on. And this callback function should tell me which of the lines has been clicked on. With this information I would be happy and could program the necesary specific actions.
How can I do that?
Nikolaus
0 个评论
回答(1 个)
Jeremy
2013-10-18
I don't use the IP toolbox but I assuming you would be able to use a "line" instead of imline since I don't think imline has callback, or maybe this could be adapted to imline.
function []=xxx;
figure;
line([1 0], [1 0], 'ButtonDownFcn',{@line_click,1});
line([0 1], [1 0], 'ButtonDownFcn',{@line_click,2});
function line_click(src,evnt,l)
msgbox(num2str(l));
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Interactive Control and Callbacks 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!