Interface for a node.
This interface provides methods for accessing input and output ports, which are essential for connecting nodes.
| Property | Description |
|---|---|
| InputPortCount | The number of input ports on the node. |
| OutputPortCount | The number of output ports on the node. |
| Method | Description |
|---|---|
| GetInputPort | Retrieves an input port using its index. |
| GetInputPortByName | Retrieves an input port using its name. |
| GetInputPorts | Retrieves all input ports on the node in the order they are displayed. |
| GetOutputPort | Retrieves an output port using its index in the displayed order. |
| GetOutputPortByName | Retrieves an output port using its name. |
| GetOutputPorts | Retrieves all output ports on the node in the order they are displayed. |