VertexMovingEditInteractiveOverlayEventArgs¶
Namespace: ThinkGeo.UI.Android
Provides data for the VertexMoving. event.
public class VertexMovingEditInteractiveOverlayEventArgs : System.EventArgs
Inheritance Object → EventArgs → VertexMovingEditInteractiveOverlayEventArgs
Properties¶
AffectedVertexFeature¶
This property gets or sets the Feature to be used to move vertex.
public Feature AffectedVertexFeature { get; set; }
Property Value¶
Feature
MovingVertex¶
This property gets or sets the vertex to be moved.
public Vertex MovingVertex { get; set; }
Property Value¶
Vertex
Cancel¶
This property gets or sets the action to be canceled or not.
public bool Cancel { get; set; }
Property Value¶
Constructors¶
VertexMovingEditInteractiveOverlayEventArgs()¶
This is the default constructor of this parameter.
public VertexMovingEditInteractiveOverlayEventArgs()
Remarks:
If you use this constructor, you have to set the properties manually before use.
VertexMovingEditInteractiveOverlayEventArgs(Boolean, Feature, Vertex)¶
This is the commonly used constructor.
public VertexMovingEditInteractiveOverlayEventArgs(bool cancel, Feature affectedVertexFeature, Vertex movingVertex)
Parameters¶
cancel
Boolean
This parameter specified the cancel property.
affectedVertexFeature
Feature
This parameter specified the affectedVertex feature property.
movingVertex
Vertex
This parameter specified the target vertex to be moved.