VertexAddedTrackInteractiveOverlayEventArgs¶
Namespace: ThinkGeo.Core
Provides data for the VertexAdded. event.
public class VertexAddedTrackInteractiveOverlayEventArgs : System.EventArgs
Inheritance Object → EventArgs → VertexAddedTrackInteractiveOverlayEventArgs
Properties¶
AddedVertex¶
Gets or sets the vertex added.
public Vertex AddedVertex { get; set; }
Property Value¶
AffectedFeature¶
Gets or sets the Feature with vertex added.
public Feature AffectedFeature { get; set; }
Property Value¶
Constructors¶
VertexAddedTrackInteractiveOverlayEventArgs()¶
Constructor of VertexAddedTrackInteractiveOverlayEventArgs class.
public VertexAddedTrackInteractiveOverlayEventArgs()
Remarks:
If you use this constructor, you have to set the properties manually before use.
VertexAddedTrackInteractiveOverlayEventArgs(Vertex, Feature)¶
Constructor of VertexAddedTrackInteractiveOverlayEventArgs class.
public VertexAddedTrackInteractiveOverlayEventArgs(Vertex addedVertex, Feature affectedFeature)
Parameters¶
addedVertex
Vertex
This parameter specified the vertex is added.
affectedFeature
Feature
This parameter specified the feature to be used to add vertex on when tracking shape.