Represents connector routed event args.
Definition
Namespace:Telerik.WinControls.UI.Diagrams
Assembly:Telerik.WinControls.RadDiagram.dll
Syntax:
C#
public sealed class ConnectorRoutedEventArgs : RoutedEventArgs
Inheritance: objectEventArgsRoutedEventArgsConnectorRoutedEventArgs
Inherited Members
Constructors
Initializes a new instance of the ConnectorRoutedEventArgs class.
C#
public ConnectorRoutedEventArgs(RoutedEvent routedEvent, IConnection connection, IShape shape, bool attachSource)
The routed event.
connectionIConnectionThe connection.
shapeIShapeThe shape.
attachSourceboolTrue is the connection attaches to the shape as source, otherwise as target.
Properties
Gets a value whether the connection is attached as source to the shape.
C#
public bool AttachAsSource { get; }
Gets a value whether the connection is attached as target to the shape.
C#
public bool AttachAsTarget { get; }
The connection.
C#
public IConnection Connection { get; }