Skip to main content
Version: 8.1

UDT Inheritance

Inductive University

UDT Inheritance

Watch the video

Once you have a single data type created, it is possible to set up UDT inheritance where data types extend to other data types, to add additional members, or override default values. For example, you can create a new data type and using the inheritance feature it will inherit all Tags from the parent data type including the parameters. Then you can add additional Tags and/or override any settings in your new data type. UDT Inheritance is a way to extend to a class of data types to add more functionality to that class.

For example, you may have a simple motor and a complex motor. The complex motor can inherit from the simple motor, which means all simple motor values will be in the complex motor and you can add more.

Nesting (using one or more UDTs to make up a larger UDT) is different from inheritance and can be found under UDT Nesting.

Changed in 8.1.17

In 8.1.17, the Tag Editor was redesigned to improve usability. The new Tag Editor now requires fewer clicks and keeps relevant tag information visible while modifying bindings, alarms, and event scripts.

Pages detailing features of the previous Tag Editor can be found in Deprecated Ignition Features.

Inheriting Property Values from an Existing UDT​

Let's use our data type Motor from the previous sections to create another data type. We'll set the parent to Motor so our new data type automatically inherits all the properties of Motor.

  1. In the Tag Browser, click on the UDT Definitions tab and click the Add icon to create a New Data Type. The Tag Editor window will open.

  2. In the Name field, enter name for your new UDT (i.e. Complex Motor). Under Parent Data Type property go to the dropdown and select the Motor data type and click Apply. Now your new Complex Motor UDT is inheriting from all the properties of the parent Motor UDT: Amps, HI SP and HOA.

  3. With the Tag Editor still open, let's add an OPC Tag to the Complex Motor UDT. Click on the Add Tag and select OPC Tag.

  4. Enter the following properties for your new Tag and click Apply. You will see the new Tag was added to the Complex Motor UDT.

    • Name: Temp
    • Value Source: OPC
    • Data Type: Integer
    • OPC Server: Click on the binding () icon and select Ignition OPC UA Server
    • OPC Item Path: Browse the OPC and find the Tag you want to use. This example uses a Temperature Tag from a Sensor in the Dairy program.
  5. In the image below the Temp Tag is pointing to a specific address in the PLC. Because we're creating a new Tag in our UDT, we don't want to point to one specific set of 'Temp' Tags. We want each instance of the Complex Motor UDT to reference a different set of 'Temp' Tags. To do that, we need to add a parameter to the Complex Motor data type that we will call 'SensorNumber'.

  6. With the Complex Motor UDT Tag Editor open, let's create a new UDT parameter. Right click the Edit icon next to the Parameters property. The Parameters pane will open.

  7. Click the Add icon and add the new parameter, 'SensorNumber'.

  8. With the Tag Editor still open, select the 'Temp' Tag. In the OPC Item Path field, click the binding icon, select Edit, and the Temp > OPC Item Path window will open. Place your cursor at the end of 'Sensor1', delete the '1', add a space, and enter '{SensorNumber}'. Don't forget the curly braces. Click Apply to save your updates and go back to the previous window.

    Changed in 8.1.17

    Starting in version 8.1.17, you may also edit tag paths inline in the Tag Editor rather than opening the OPC Item Path window. For this example, you would highlight '1' in the OPC Item Path and replace it with the new parameter, '{SensorNumber}'

  9. In the Tag Editor window, click OK to save your UDT. In the Tag Browser, the new data type is now visible in the , "Complex Motor." You can see all the inherited Tags from the Motor data type and the newly added Temp Tag.

Creating the Data Type Instance​

Now that our Complex Motor UDT is set up, let's create a data type instance of the Complex Motor.

  1. Click on the Tag tab, and from the context menu, select the Data Type Instance > Complex Motor.
  2. Enter the Name for the instance (i.e., Complex Motor 100). Click the Edit icon next to the Parameters property and enter the parameter value of '2' for MotorNumber and SensorNumber.
  3. Click OK to create the instance. Now, you'll be able to see all the values for Complex Motor 100 including the Temp Tag that was added.

Overriding Properties of the Parent UDT​

Inductive University

Overriding Properties in UDT Instances

Watch the video

Another benefit of the UDT inheritance feature is it allows you to override some of the properties of the parent. For example, since the Complex Motor has Motor as the parent, you can go to any of the Tags and override any of the settings of that data type. Click the circle to the right of the property and enter a new value, or change a property's value and the green circle changes to green automatically. This overrides the property inherited from the parent.

You can also turn on Alarming and History that wasn't initially turned on in the parent UDT by simply using the override feature. Next to the Alarm property, click the green circle to change it to green, and click the pencil () icon to configure the alarm if it is not already configured. If you want to turn on History, click the green circle or change any of the History properties which will cause any of the green circles to change from gray to green.

UDT Inheritance Traits​

UDT instances that are inherited and have properties that override the parent properties have a visual representation next to them.

UDT Hierarchy Tool​

New in 8.1.23

The UDT Hierarchy Tool displays the relationships between connected UDT definitions and instances. It shows inheritance between UDT definitions, overrides of inherited properties, and instances directly related to selected definitions. Right click a UDT Definition or UDT Instance and select View UDT Hierarchy to access the UDT Hierarchy Tool.

The Type Hierarchy panel shows the related definitions. When you have the Show Instance test one two icon selected, you can sort instances by typing into the filter bar and choose between grouping by folder path or name with the respective Sort Instances by Path or Sort Instances by Name icons. If you expand the Instances of folders, you will see UDT instances that directly inherit the definition as a parent. Note, nested UDT Instances are not visible in this list.

If you need additional filtering for instances, such as specific overrides, right click the Instances of text for the specific UDT instances to open the Tag Report Tool with the search pre-populated for that specific set.

Information about member tags and overridden properties for the selected UDT Definition or UDT Instance are visible on the right side of the tool. As shown in the example below, the inherited tag member types will be grayed out and followed by the Inherited icon.