VertexMovingEditInteractiveOverlayEventArgs¶
Namespace: ThinkGeo.Core
Provides data for the VertexMoving. event.
public class VertexMovingEditInteractiveOverlayEventArgs : System.EventArgs
Inheritance Object → EventArgs → VertexMovingEditInteractiveOverlayEventArgs
Properties¶
TargetVertex¶
Gets or sets the target vertex to be moved
public PointShape TargetVertex { get; set; }
Property Value¶
PointShape
AffectedFeature¶
Gets or sets the Feature to be used to move vertex.
public Feature AffectedFeature { get; set; }
Property Value¶
Feature
MovingVertex¶
Gets or sets the vertex to be moved.
public Vertex MovingVertex { get; set; }
Property Value¶
Vertex
Cancel¶
Gets or sets the action to be canceled or not.
public bool Cancel { get; set; }
Property Value¶
Constructors¶
VertexMovingEditInteractiveOverlayEventArgs()¶
Constructor of VertexMovingEditInteractiveOverlayEventArgs class.
public VertexMovingEditInteractiveOverlayEventArgs()
Remarks:
If you use this constructor, you have to set the properties manually before use.
VertexMovingEditInteractiveOverlayEventArgs(Boolean, Feature, Vertex)¶
Constructor of VertexMovingEditInteractiveOverlayEventArgs class.
public VertexMovingEditInteractiveOverlayEventArgs(bool cancel, Feature affectedFeature, Vertex movingVertex)
Parameters¶
cancel
Boolean
Indicates whether the operation is canceled or not.
affectedFeature
Feature
Indicates a feature which is affected.
movingVertex
Vertex
Indicates a vertex which is moving.
VertexMovingEditInteractiveOverlayEventArgs(Boolean, Feature, Vertex, PointShape)¶
Constructor of VertexMovedEditInteractiveOverlayEventArgs class.
public VertexMovingEditInteractiveOverlayEventArgs(bool cancel, Feature affectedFeature, Vertex movingVertex, PointShape targetVertex)
Parameters¶
cancel
Boolean
This parameter specified the cancel property.
affectedFeature
Feature
This parameter specified the affectedVertex feature property.
movingVertex
Vertex
This parameter specified the moving vertex.
targetVertex
PointShape
This parameter specified the target vertex.