getting the ID of the line which just has been clicked on
2 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
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 comentarios
Respuestas (1)
Jeremy
el 18 de Oct. de 2013
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));
Ver también
Categorías
Más información sobre Interactive Control and Callbacks en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!