color the specific simulink block

3 views (last 30 days)
How can i change the color of the particular simulink block from the matlab command window?
I have first loaded the system load_system('testmodel')
'testmodel\input1' is my inport1 name.
now i need to change the inport1 to color green?
is it possible to do it?
thanks a lot

Accepted Answer

Sebastian Castro
Sebastian Castro on 22 May 2015
You can enter
>> blockName = 'testModel/input1';
>> set_param(blockName,'BackgroundColor','green');
By the way, you could use other commands such as gcb or find_system (look them up!) to figure out block names.
- Sebastian

More Answers (0)

Categories

Find more on Programmatic Model Editing in Help Center and File Exchange

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!