Borrar filtros
Borrar filtros

How to programmatically control simulink block's "Send to Front"/"Send to Back" option?

24 visualizaciones (últimos 30 días)
How to programmatically control simulink block's "Send to Front"/"Send to Back" option?

Respuestas (1)

Vignesh Murugavel
Vignesh Murugavel el 8 de Nov. de 2022
In order to programmatically control Simulink block’s “Send to Front”/”Send to Back” option you should use the “ZOrder” Block Property.
The block property called "ZOrder" specifies a block's "depth" within the Simulink model (whether it appears on top or behind another block). Blocks with higher numbers will be drawn on top of blocks of lower numbers. You can access the "ZOrder" of the currently selected block by executing the following command in the MATLAB command window:
>>get_param(gcb,'ZOrder')
In a new model, the first block will have a "ZOrder" of 1, the next block will be 2, the third block will be 3, and so on.
Calling "Send to Back" sets a low and possibly negative value, calling "Bring to Front" sets a high and possibly positive value.
You can also programmatically set the ZOrder Property of the Block using:
>>set_param(gcb,'ZOrder', yourValue)

Categorías

Más información sobre Programmatic Model Editing en Help Center y File Exchange.

Productos


Versión

R2019a

Community Treasure Hunt

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

Start Hunting!

Translated by