To Create a New Data Type Manually
When creating a new data type manually, you have to specify the Name of the data type, parameters, and members or Tags that are going to be part of the structure of your new data type.
- Select the Tags folder in the Tag Browser.
- Click the Tag icon on the Tag Browser toolbar. The Tag creation menu will open.

- Select New Data Type from the menu. The Tag Editor window will open.
When editing complex Tags, the Tag Editor window appears a bit differently. The member tree structure is presented in the upper left. By selecting a member, the Tag property categories are displayed below the member area, and the editor for the selected category appears to the right.

To Extend Other Types
User Defined Types can extend other UDTs to add additional members, or override default values. The Parent Type property (with the main/top UDT member selected) can be modified by selecting another UDT from the dropdown. This will add all members of the selected UDT to this UDT, and you can add additional Tags or change default properties. Note: the Parent Type can only be selected when the Tag is first created. After that, it is not possible to modify the Parent Type property.
To Add Members to a Data Type
Simply click the green + icon at the toolbar above the member tree. Data types can contain standard Tags like OPC and DB Tags, as well as folders and instances of other complex types.
To Add Parameters
Parameters, which can be used for property expansion in member Tags, can be added by selecting the data type in the member tree. If a data type contains other complex types in it, there may be various points in the tree with custom parameters. While a data type can override the parameter values inherited from a parent, new parameters can only be added to the root node of the new data type.
Configuring Member Properties
The Tags inside of data types are configured much like normal Tags. However, in this case, the values can be thought of more as "default values", which will be used unless other values are specified when the instance is created. Most of the values configured in the data type can be modified later in subtypes or instances. Furthermore, unlike normal Tags, in the context of a data type many properties (generaly the string based properties) can reference the custom attributes of the type in order to build parameterized Tags.
Attribute Referencing and Parameterized Types
As mentioned above, many properties in the member Tag configuration can reference the parameters available in the data type. When instances are created, these references are replaced with the values defined for the type. Parameter references also support basic offsets and numerical formatting, providing a great deal of flexibility. To reference a parameter, use the syntax {ParameterName}
, or use Ctrl-Space to display a list of available parameters to choose from.
To offset a value, use the form {ParameterName+offset}
.
To format a value, use the form {ParameterName|format}
. The format pattern is the same as that used for the numberFormat
expression function. In short, "0" can be used to require a digit, and "#" can be used for optional digits. ie: ##0
Example:
For this example, we'll assume that we're parameterizing the OPC Item Path, and that the data type has an integer attribute named BaseAddress
defined. We'll pretend the OPC Server provides Tags named like DataPoint1
.
Standard referencing
OPC Item Path: DataPoint{BaseAddress}
Offset
Imagine that our data type had three fields, and these were laid out sequentially in the device.
Instead of specifying each address for each Tag, we can simply offset from the base address:
Member 1: DataPoint{BaseAddress+0}
Member 2: DataPoint{BaseAddress+1}
Member 3: DataPoint{BaseAddress+2}
Continuing from the example above, imagine that our OPC server actually provided addresses in the form DataPoint001
, in order to stay consistent up to "DataPoint999". This can be accommodated
using number formatting in the reference:
Member 1: DataPoint{BaseAddress+0|000}
Member 2: DataPoint{BaseAddress+1|000}
Member 3: DataPoint{BaseAddress+2|000}
This format of three zeros means "three required digits". If our instance has a base address of 98, the resulting paths will be DataPoint098, DataPoint099, DataPoint100
.
Properties that can be Parameterized
The following Tag properties can reference parameters:
- Value (for string data type only)
- OPC Server
- OPC Item Path
- Tooltip
- Documentation
- Expression/SQL Query
- Bindable Alarm Properties (Note: you can bind a property directly to the parameter, or use parameters in the binding expression, or directly in string property values)
Overriding Properties
Subtypes and instances can override the properties defined in parent types. To do this, simply select the override control (the small grey ball) next to the property to override in the member editor. Conversely, to remove the override, simply unselect the control.
Custom parameters can be overridden as well, but it is not required to specify that the value is an override. Simply provide a new value for the property. For inherited parameters, the delete button next to the parameter table will simply remove the override. The parameter can only truly be delete from the type that defines it.