VertexAddingTrackInteractiveOverlayEventArgs¶
Namespace: ThinkGeo.UI.Android
Provides data for the VertexAdding. event.
public class VertexAddingTrackInteractiveOverlayEventArgs : System.EventArgs
Inheritance Object → EventArgs → VertexAddingTrackInteractiveOverlayEventArgs
Properties¶
Cancel¶
This property gets or sets the action to be canceled or not.
public bool Cancel { get; set; }
Property Value¶
AddingVertex¶
This property gets or sets the feature to be used to add vertex on when tracking shape.
public Vertex AddingVertex { get; set; }
Property Value¶
Vertex
AffectedFeature¶
This property gets or sets the Feature to be used to add vertex to.
public Feature AffectedFeature { get; set; }
Property Value¶
Feature
Constructors¶
VertexAddingTrackInteractiveOverlayEventArgs()¶
This is the default constructor of this parameter.
public VertexAddingTrackInteractiveOverlayEventArgs()
Remarks:
If you use this constructor, you have to set the properties manually before use.
VertexAddingTrackInteractiveOverlayEventArgs(Vertex, Feature, Boolean)¶
This is the commonly used constructor.
public VertexAddingTrackInteractiveOverlayEventArgs(Vertex addingVertex, Feature affectedFeature, bool cancel)
Parameters¶
addingVertex
Vertex
This parameter specified the vertex is going to be added.
affectedFeature
Feature
This parameter specified the feature to be used to add vertex on when tracking shape.
cancel
Boolean
This parameter specified the cancel property.