UnHighlighting a subsytem in a Simulink model
Mostra commenti meno recenti
Hello everyone,
As a beginner I am struggling with hilite_system functionality of Matlab. In my project I have to highlight certain blocks which I perform using hilite_system. But while unhighlighting these blocks, I have to perform each block individually. Their is an option in the menubar -> View - Remove Highlighting which removes all the highlighting of all the blocks. My question is that can I perform this(removing highlighting of all blocks by one command) via code?
Thanks in advance.
ThN
Risposte (2)
Kaustubha Govind
il 16 Apr 2013
Do you have the path to the block(s) that was used with the hilite_system command? If yes, this might work to undo the highlighting:
>> set_param(gcb,'HiliteAncestors', 'none');
1 Commento
subhra behera
il 18 Ago 2021
Modificato: subhra behera
il 18 Ago 2021
I think the best way is to use
This will remove all highlighting models
>>SLStudio.Utils.RemoveHighlighting(get_param(bdroot,'handle'))
Categorie
Scopri di più su Configure and View Diagnostics in Centro assistenza e File Exchange
Prodotti
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!