removeAllParameters

Class: Simulink.Mask
Package: Simulink

Remove all existing parameters from a mask

Syntax

p = Simulink.Mask.get(blockName)
p.removeAllParameters

Description

p = Simulink.Mask.get(blockName) gets the mask on the block specified by blockName as a mask object.

p.removeAllParameters deletes all existing parameters from the mask.

Input Arguments

blockName

The handle to the block or the path to the block inside the model.

Examples

  1. Get mask as an object using a masked block’s path.

    p = Simulink.Mask.get('myModel/Subsystem');
  2. Delete all existing parameters from the mask.

    p.removeAllParameters;
Was this topic helpful?