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