Class VertexChangedEventArgs
Class containing Vertex changed event args.
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 VertexChangedEventArgs : EventArgs
Constructors
VertexChangedEventArgs(PathNode, VertexChangeType, Int32, PointF)
Initializes a new instance of the VertexChangedEventArgs class.
Declaration
public VertexChangedEventArgs(PathNode nodeVertexContainer, VertexChangeType changeType, int nVertexIdx, PointF ptVertexLocation)
Parameters
Type | Name | Description |
---|---|---|
PathNode | nodeVertexContainer | The node vertex container. |
VertexChangeType | changeType | Type of the vertex change. |
System.Int32 | nVertexIdx | The vertex index. |
System.Drawing.PointF | ptVertexLocation | The vertex location. |
Properties
ChangeType
Gets the type of the change.
Declaration
public VertexChangeType ChangeType { get; }
Property Value
Type | Description |
---|---|
VertexChangeType | The type of the change. |
NodeAffected
Gets the node affected.
Declaration
public PathNode NodeAffected { get; }
Property Value
Type | Description |
---|---|
PathNode | The node affected. |
VertexIndex
Gets the index of the vertex.
Declaration
public int VertexIndex { get; }
Property Value
Type | Description |
---|---|
System.Int32 | The index of the vertex. |
VertexLocation
Gets the vertex location.
Declaration
public PointF VertexLocation { get; }
Property Value
Type | Description |
---|---|
System.Drawing.PointF | The vertex location. |