Class: Simulink.Mask
Package: Simulink
Unmask a block and delete the mask from memory
p = Simulink.Mask.get(blockName)
p.delete
gets
the mask on the block specified by p
= Simulink.Mask.get(blockName)blockName
as
a mask object.
unmasks the
block and deletes the mask from memory.p
.delete
|
The handle to the block or the path to the block inside the model. |
Get mask as an object using a masked block’s path.
p = Simulink.Mask.get('myModel/Subsystem');
Unmask the block using the mask object and delete the mask from memory.
p.delete;