what is the script to get line handle by selecting line in a model
36 views (last 30 days)
Show older comments
venkateswarlu kaithepalli
on 5 Jun 2013
Answered: Aseem Routray
on 9 Dec 2019
what is the script to get line handle by selecting line in a model
0 Comments
Accepted Answer
Vishal Rane
on 5 Jun 2013
Not aware of anything that gets you handle of a selected line. But
find_system(bdroot,'findall','on','Type','Line')
gives all line handles in the block diagram. You can add a specific path in place of bdroot.
2 Comments
Kaustubha Govind
on 5 Jun 2013
More specifically, you can query the 'Selected' property of the line handle to find the one that is selected:
lh = find_system(bdroot,'FindAll','on','Type','Line');
get(lh, 'Selected')
Look for the entry corresponding to Selected=on.
More Answers (1)
Aseem Routray
on 9 Dec 2019
Hello,
find_system(bdroot,'FindAll', 'on', 'type','line','selected','on')
This will get you the desired result.
Regards,
Aseem
0 Comments
See Also
Categories
Find more on Programmatic Model Editing in Help Center and File Exchange
Products
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!