IPlugOut Inner { get; set; }

book_4_sparkGenerated
code_blocksInput

Description

The Inner property of the PlugOut class in the Editor.NodeEditor namespace provides access to an instance of IPlugOut. This property is used to represent the internal plug-out connection within a node editor system, allowing for the management and interaction of plug-out connections.

Usage

To use the Inner property, you must have an instance of the PlugOut class. You can access the Inner property to retrieve or interact with the internal plug-out connection. This is particularly useful when you need to manage or inspect the connections of a node in a node editor environment.

Example

// Assuming 'plugOut' is an instance of Editor.NodeEditor.PlugOut
Editor.NodeEditor.IPlugOut innerPlugOut = plugOut.Inner;

// Use 'innerPlugOut' to interact with the internal plug-out connection
if (innerPlugOut != null)
{
    // Perform operations with innerPlugOut
}