Object: Connection
A connection object is a simple structure used for connection between two equipment.
🔧 Properties
Name | Type | Description |
---|---|---|
Target |
Object | Gets the object that forms part of the connection |
Distance |
Number | Gets the distance along the parent object |
📝 Example
Get the name of the next conveyor
var nextConv = myConv.NextConnection.Target;
LogDebug("next conveyor is " + nextConv.Name);