Description
The Name
property of the ConnectionHandleConfig
struct in the Editor.NodeEditor
namespace represents the name identifier for a connection handle configuration. This property is used to uniquely identify a connection handle within the node editor environment.
Usage
To use the Name
property, you can access it directly from an instance of ConnectionHandleConfig
. This property is a string
and can be both read and modified.
Example
// Example of accessing and setting the Name property
// Create an instance of ConnectionHandleConfig
var connectionHandleConfig = new ConnectionHandleConfig();
// Set the Name property
connectionHandleConfig.Name = "InputConnection";
// Retrieve the Name property
string handleName = connectionHandleConfig.Name;
// Output the name
// handleName should be "InputConnection"