Get selected objects (simulink)
32 views (last 30 days)
Show older comments
Hi, when I want to run a script on a selected simulink object, I use "gca" to get its handle. If I select many objects, "gca" return only the last selected. Ho can I get handles of ALL selected objects?
Thanks Adriano
0 Comments
Accepted Answer
Orion
on 12 Nov 2014
Hi,
gca won't return the selected object, but the current axe in a figure (get current axe)
I guess you meant gcb (get current block).
gcb only return one block.
if you want multiple blocks :
MyBlocks = find_system(gcs,'Selected','on')
More Answers (1)
Gaganjyoti Baishya
on 21 Jun 2020
To get an array of all selcted blocks use find_system(bdroot, 'Selected', 'on');
1 Comment
Joe Rustan
on 3 Nov 2022
Is there a way to get just the currently selected signal line coming from/to a block? Thanks.
See Also
Categories
Find more on Simulink Functions 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!