E_BA_NodeTypeTarget
The enumeration describes the relative reference to an object.
Sample
In the following project structure:
- the ventilation Ventilation System 1 is a system
- the air heater PreHtr is an aggregate
- the pump Pump is an aggregate
- the command Cmd is a function
In relation to the system Ventilation System 1:
- the air heater PreHtr is the first aggregate
- the pump Pump is the last aggregate
- the command Cmd is the function
TYPE E_BA_NodeTypeTarget :
(
Invalid := 0,
eFirstAggregate := 1,
eLastAggregate := 2,
eFunction := 3
) BYTE;
END_TYPE
Name | Description |
---|---|
Invalid | No significance for the user. |
eFirstAggregate | Refers to the first aggregate in relation to an object. |
eLastAggregate | Refers to the last aggregate in relation to an object. |
eFunction | Refers to the function in relation to an object. |