IEnumerable<Connection> Connections { get; set; }

book_4_sparkGenerated
code_blocksInput

Description

The Connections property of the PlugOut class in the Editor.NodeEditor namespace provides access to a collection of connections associated with a particular plug-out node. This property returns an IEnumerable<Connection>, allowing iteration over all connections linked to the plug-out.

Usage

Use the Connections property to retrieve all connections associated with a specific PlugOut instance. This can be useful for scenarios where you need to inspect, modify, or iterate over the connections of a node editor plug-out.

Example usage:

var plugOut = new PlugOut();
foreach (var connection in plugOut.Connections)
{
    // Perform operations with each connection
}

Example

var plugOut = new PlugOut();
foreach (var connection in plugOut.Connections)
{
    // Perform operations with each connection
}