Files
APIVisualExecutor/docs/api/Nodify_Events_ConnectionEventArgs.md
Ankitkumar Satapara 21aaef6776 Add project files.
2026-04-17 22:31:58 +05:30

2.3 KiB

ConnectionEventArgs Class

Namespace: Nodify.Events

Assembly: Nodify

Inheritance: ObjectEventArgsRoutedEventArgsConnectionEventArgs

References: BaseConnection, ConnectionEventHandler

Provides data for BaseConnection related routed events.

public class ConnectionEventArgs : RoutedEventArgs  

Constructors

ConnectionEventArgs(Object)

Initializes a new instance of the ConnectionEventArgs class using the specified ConnectionEventArgs.Connection.

public ConnectionEventArgs(object connection);  

Parameters

connection Object: The FrameworkElement.DataContext of a related BaseConnection.

Properties

Connection

Gets the FrameworkElement.DataContext of the BaseConnection associated with this event.

public object Connection { get; set; }  

Property Value

Object

SplitLocation

Gets or sets the location where the connection should be split.

public Point SplitLocation { get; set; }  

Property Value

Point

Methods

InvokeEventHandler(Delegate, Object)

protected override void InvokeEventHandler(Delegate genericHandler, object genericTarget);  

Parameters

genericHandler Delegate

genericTarget Object