Events / ConnectionEventArgs
ConnectionEventArgs Class
Section titled “ConnectionEventArgs Class”Namespace: Nodify.Events
Assembly: Nodify
Inheritance: Object → EventArgs → RoutedEventArgs → ConnectionEventArgs
References: BaseConnection, ConnectionEventHandler
Provides data for BaseConnection related routed events.
public class ConnectionEventArgs : RoutedEventArgs
Constructors
Section titled “Constructors”ConnectionEventArgs(Object)
Section titled “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
Section titled “Properties”Connection
Section titled “Connection”Gets the FrameworkElement.DataContext of the BaseConnection associated with this event.
public object Connection { get; set; }
Property Value
SplitLocation
Section titled “SplitLocation”Gets or sets the location where the connection should be split.
public Point SplitLocation { get; set; }
Property Value
Methods
Section titled “Methods”InvokeEventHandler(Delegate, Object)
Section titled “InvokeEventHandler(Delegate, Object)”protected override void InvokeEventHandler(Delegate genericHandler, object genericTarget);
Parameters
genericHandler
Delegate
genericTarget
Object