Class EndPointChangingEventArgs
Class containing Connection changing event args
Inheritance
System.Object
System.EventArgs
EndPointChangingEventArgs
Inherited Members
System.EventArgs.Empty
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Syncfusion.Windows.Forms.Diagram
Assembly: Syncfusion.Diagram.Base.dll
Syntax
public class EndPointChangingEventArgs : EventArgs
Constructors
EndPointChangingEventArgs(EndPoint, PointF, ConnectionPoint, DragState)
Initializes a new instance of the EndPointChangingEventArgs class.
Declaration
public EndPointChangingEventArgs(EndPoint element, PointF point, ConnectionPoint currentport, DragState dragstate)
Parameters
| Type | Name | Description |
|---|---|---|
| EndPoint | element | The EndPoint |
| System.Drawing.PointF | point | Current point |
| ConnectionPoint | currentport | The port |
| DragState | dragstate | Drag status |
Properties
Cancel
Gets or sets a value indicating whether this is cancel.
Declaration
public bool Cancel { get; set; }
Property Value
| Type |
|---|
| System.Boolean |
CurrentPort
Get the port for establishing the connection
Declaration
public ConnectionPoint CurrentPort { get; }
Property Value
| Type |
|---|
| ConnectionPoint |
DragState
Get the Drag status of the endpoint of the connectors
Declaration
public DragState DragState { get; }
Property Value
| Type |
|---|
| DragState |
Element
Get the endpoint of the connectors
Declaration
public EndPoint Element { get; }
Property Value
| Type |
|---|
| EndPoint |
Point
Get the current point of the endpoint
Declaration
public PointF Point { get; }
Property Value
| Type |
|---|
| System.Drawing.PointF |