Description
The Output
property of the Connection
class in the Editor.NodeEditor
namespace represents the output plug of a node connection. This property is of type PlugOut
, which is used to define the output endpoint of a connection in a node-based editor system.
Usage
To use the Output
property, you typically access it from an instance of the Connection
class. This property allows you to retrieve or set the output plug associated with a particular connection. It is useful when you need to manage or inspect the connections between nodes in a node editor.
Example
// Example of accessing the Output property
// Assume 'connection' is an instance of Editor.NodeEditor.Connection
Editor.NodeEditor.PlugOut outputPlug = connection.Output;
// You can now use 'outputPlug' to perform operations related to the output of the connection.