VertexMovedEditInteractiveOverlayEventArgs¶
Namespace: ThinkGeo.Core
Provides data for the VertexMoved. event.
public class VertexMovedEditInteractiveOverlayEventArgs : System.EventArgs
Inheritance Object → EventArgs → VertexMovedEditInteractiveOverlayEventArgs
Properties¶
AffectedFeature¶
Gets or sets the Feature to be used to remove vertex.
public Feature AffectedFeature { get; set; }
Property Value¶
MovedVertex¶
Gets or sets the vertex moved.
public Vertex MovedVertex { get; set; }
Property Value¶
Constructors¶
VertexMovedEditInteractiveOverlayEventArgs()¶
Constructor of VertexMovedEditInteractiveOverlayEventArgs class.
public VertexMovedEditInteractiveOverlayEventArgs()
Remarks:
If you use this constructor, you have to set the properties manually before use.
VertexMovedEditInteractiveOverlayEventArgs(Feature, Vertex)¶
Constructor of VertexMovedEditInteractiveOverlayEventArgs class.
public VertexMovedEditInteractiveOverlayEventArgs(Feature affectedFeature, Vertex movedVertex)
Parameters¶
affectedFeature
Feature
This parameter specified the affectedVertex feature property.
movedVertex
Vertex
This parameter specified the target vertex moved.