Skip to content

VertexAddedTrackInteractiveOverlayEventArgs

Namespace: ThinkGeo.UI.Android

Provides data for the VertexAdded. event.

public class VertexAddedTrackInteractiveOverlayEventArgs : System.EventArgs

Inheritance ObjectEventArgsVertexAddedTrackInteractiveOverlayEventArgs

Properties

AddedVertex

This property gets or sets the vertex added.

public Vertex AddedVertex { get; set; }

Property Value

Vertex

AffectedFeature

This property gets or sets the Feature with vertex added.

public Feature AffectedFeature { get; set; }

Property Value

Feature

Constructors

VertexAddedTrackInteractiveOverlayEventArgs()

This is the default constructor of this parameter.

public VertexAddedTrackInteractiveOverlayEventArgs()

Remarks:

If you use this constructor, you have to set the properties manually before use.

VertexAddedTrackInteractiveOverlayEventArgs(Vertex, Feature)

This is the commonly used constructor.

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.