Main Content

Add Dynamic Behavior to Masked Icons

Using Graphical Icon Editor, you can add dynamic behavior to masked block icons:

  • Render multiple variations of the same block icon using parts.

  • Hide or unhide elements in the icon based on block parameters or mask parameters.

  • Position icon elements relative to other elements using layout constraints.

  • View the evaluated value of a block parameter on the block icon.

  • Create a block icon that dynamically changes size when you resize the block.

  • Repeat icon elements on multiple ports.

Render Multiple Variations of Same Block Icon Using Parts

Create icon parts in Graphical Icon Editor to store multiple variations of a block icon in a single file. Each variation is a separate part and is visible based on conditions you place on the block or mask parameters.

Consider a masked Subsystem block with the popup parameter set to portSelection with the prompt No.of.Ports. The block icon changes based on the value you select for No.of.Ports in the Block Parameters dialog box. If you specify the No. of Ports as 3, an image of a three-switch port appears on the block icon. If you specify No. of Ports as 4, an image of a four-switch port appears on the block icon

Two Subsystem blocks. The first block shows an image of a three-port switch in its icon, and has Number of Ports set to 3 in the Block Parameters dialog box. The second block shows an image of a four-port switch in its icon, and has Number of Ports set to 4 in the Block Parameters dialog box.

To create block icon variations using parts:

  1. Create a mask on the Subsystem block.

  2. In the Mask Editor, in the Controls pane, click Popup to create a popup parameter. In the Property Editor pane, double-click the cell to the right of Type options and select List of options. Add two rows, specify both the Description and Value for the first row as 3, and specify both the Description and Value for the second row as 4. Click Save. mask editor parameter

  3. In the Icon tab, click Drawing Commands and select Graphical.

  4. Draw the icon image shown. Pin this part to make it the base part of the block mask icon. Click toggle base part to pin this part to make it the base part of the block mask icon. The elements in the base part appear in all other parts, reducing the need to replicate icon elements.

    Mask Editor showing the base part of the mask icon. The Toggle base part icon is highlighted.

    Note

    You cannot modify the elements of the base part and their positions in other parts.

  5. Click Add icon part. to create a new icon part. Use the graphical drawing commands to draw an icon with four-switch port elements. . Double-click the part name to rename the part as Four_switch_port.

    Mask Editor showing a four-switch port icon image.

  6. Click duplicate to duplicate the Four_switch_port part. Modify the duplicated part to show a three-switch port. Rename the part as Three_switch_port. Mask Editor showing a three-switch port icon image.

  7. To control when a particular part appears as the block icon, enter part's conditions based on the corresponding block parameters by clicking Set visibility condition. In this example, specify the conditions as portSelection == 3 for Three_switch_port and portSelection == 4 for the part Four_switch_port. Click Apply.

    Set Visibility Condition box with a condition entered

  8. Save the mask. In the Block Parameters dialog box, change the value of the No. of Ports parameter. Observe how the block icon changes based on the value you select for the parameter.

    Subsystem block showing an image of a three-port switch in its icon, and with Number of Ports set to 3 in the Block Parameters dialog box.

Design Complex Block Icon Using Parts and Preview the Variations

You can design complex block icons using icon parts and combine the parts based on the parameter conditions.

For example, each element in the icon of an integrator block is designed in individual parts and these parts are combined based on the visibility condition specified for each part. This helps in avoiding a cluttered canvas with all the icon elements. Each variation of the integrator block is assembled based on the parameter settings and visibility conditions.

Element browser showing several parts used in variations of the Integrator block icon

This image shows a few of the Integrator block icon variations based on visibility conditions.

Three variations of the Integrator block icon. Arrows point from Integrator block icon parts to the variations of the Integrator block icons that they are used to create. Visibility conditions used to select the icon parts appear below each Integrator block icon variation.

Preview the variations of the icon on Simulink® canvas using the options Parameter Variations and Width Height Variations along with other preview options.

Preview options for a block mask icon

Click Parameter Variations and Width Height Variations to view all the permutation and combination of the integer block based on parameters and conditional visibility.

Permutaion and combination of integer block based on parameters and conditional visibility

Array of Integrator block icon variations based on width and height specification

Hide or Unhide Elements in the Icon Based on Block Parameters or Mask Parameters

Hide or unhide elements in the icon by applying certain conditions to the block parameters.

For example, consider a Gain block icon with matrix values. The elements in the Gain block appear and disappear based on the conditions set on the block parameters.Two Gain block icon variations based on selection of the Multiplication parameter

Set the condition in the following figure where the element uvec in the Gain block is visible only when the value of the Multiplication parameter is Matrix_Ku_Vector.

Note

Visibility conditions support JavaScript expressions only.

visibility condition set to multType==Matrix_Ku_Vector

Set Visibility Condition Based on Evaluated Value of Parameters

You can access evaluated workspace variables as icon data. You can use these values to set conditional visibility, layout constraints, or text parameterization. Additionally, you can retrieve the integer values of enumerations assigned to the workspace variables.

The syntax to access the evaluated value of a mask workspace variable is:

value@maskWorkspaceVariable === value

The syntax to access the evaluated value of an enumeration member is:

value@maskParameter === "enumerationValue"

For example, consider a Subsystem with a block icon having translational damper and rotational damper elements. These elements must be visible based on an enumeration value. The enumeration options are stored in an enumeration file Damper.m.

classdef Damper < Simulink.IntEnumType
  enumeration
    A(1)
    B(2)
  end
  methods(Static)
    function aOut = addClassNameToEnumNames()
      aOut = false;
    end
  end
end

To set the visibility condition based on the enumerated value:

  1. Create a mask on the Subsystem block.

  2. In the Parameters & Dialog tab, create a mask popup parameter DamperSelection. Double-click the cell to the right of Type options in the Property Editor pane to provide the list of options for the popup parameter.

  3. Select Use enumeration and then select Reference Enumeration file. Enter the name of the enumeration file as Damper, omitting the extension. The enumeration options are displayed in the table. Click Save.

    Note

    The enumeration file must be available in MATLAB path.

  4. In the Icon tab, click Drawing Commands select Graphical.

  5. Insert both translational and rotational dampers onto the icon canvas.

  6. Right-click on the translational damper and select Add Dynamization.

  7. Set the visibility condition as value@DamperSelection===1 which will control the visibility of the element in the block icon.

    Visibility condition for the translational damper element

  8. Similarly set the visibility condition for the rotational damper as well.

Upon changing the options of the mask parameter, either the translational or the rotational damper is displayed accordingly.

Subsystem block with translational damper element displayed on its icon. The Block parameters dialog box shows Damper.B selected.

Position Elements Relative to Other Elements Using Layout Constraints

Layout constraints help you to position each icon element relative to other icon elements on the canvas or the canvas itself. To set layout constraints on the icon elements, select the element, right-click and select Set Layout Constraints. In the Layout Constraints pane, pin both the Source element and the Relative to element using the pinning panel. Specify the Offset. Click More to specify complex conditions to position the elements.

Layout Constraints pane with pinning panels

Click Preview in Model to see the effects of layout constraints.

You can also set complex conditions in layout constraints. For example, you can force the left bracket of the matrix in the icon of the Gain block to be three pixels to the left of the first element of the matrix.

To set this complex condition:

  1. Right-click leftBracket and select Set Layout Constraints.

  2. In the Layout Constraints pane, click More

  3. Specify Right, Top and Bottom as matrix.left-3, matrix.top, andmatrix.bottom respectively.

Layout constraints for the left bracket element

Text Parameterization

You can view the evaluated value of a block parameter on the block icon. Enter the block parameter name or a placeholder in Parameter/Value that will return the text or value during simulation. To see the evaluated value of a block parameter on the block icon, preview the icon on the Simulink canvas.

For example, to display a parameter value on a block icon:

  1. Create a mask on the block.

  2. In the Parameters & Dialog pane, create an Edit parameter Speed and specify the value as 120.

    Mask Editor showing new Edit parameter Speed with value 120.

  3. On the Icon tab, click Drawing Commands and select Graphical.

  4. Create a text element in the canvas. Right-click the text element and select Add Dynamization.

    select dynamization option

  5. In the Text Parameterization pane, in the Text pane, select Dynamic Text and enter the parameter name Speed in Parameter/Value.

    Text Dynamization pane showing the Dynamic Text section of the Text tab. Parameter/Value is set to Speed.

  6. Select Editing Behavior. Select Parameter in the Edit Handler list and specify the Parameter Name as Speed.

    Note

    In Edit Handler, select Parameter, if you want to edit the value of the block parameter in the block icon itself and as a result the block parameter value in the mask is also updated. Select MATLAB Handler if you want to write MATLAB code to edit the block parameter value.

  7. Text Dynamization pane showing the Editing Behaviot section of the Text tab. Edit Handler is set to Parameter, and Parameter Name is set to Speed.

  8. Click Preview in Model and observe that the value of the parameter is displayed on the icon.

    Simulink model with a Subsystem block. The block icon shows the Speed parameter value 120.

Display Elements That Fit Size of Icon

You can create a block icon that dynamically changes sizes when you resize the block.

Select elements in the canvas, right-click and select Convert to First Fit. This groups the selected elements and these elements that fits the size of the icon appears when you resize the icon.

For example, the following figure shows a Gain block with four elements of different sizes grouped under a first-fit element. When you resize the block, the element that fits in the size of the Gain block appears as the icon of the block.

Mask Editor showing Gain block with four elements grouped under a first-fit element.

Repeat Icon Elements on Multiple Ports

You can repeat the same icon element dynamically on multiple ports without having to manually repeat the element at each port and avoid clutter on the canvas.

For example, consider this block icon where the rectangle element is repeating on all the right ports of the block.

Repeat rectangle element on all right ports

To repeat the rectangle element across multiple ports:

  1. Create a mask on the block.

  2. On the Icon tab, click Drawing Commands and select Graphical.

  3. Create a rectangle element in the canvas. Right-click the rectangle element and select Add Dynamization.

  4. Under Element Dynamization, select Repeat.

  5. Select Right Ports from the Port Position list to repeat the element on the selected port.

  6. Select Right of the Block from the Repeat Position list to align the element to the port.

  7. Set the Offset as -2 to set the distance of the element from the canvas.

Note

The alignment of the elements and the offset is set to Right of the Block and -2 by default.

Repeat tab of the Element Dynamization pane

Related Topics