Table of Contents

Class VertexAddedTrackInteractiveOverlayEventArgs

Namespace
ThinkGeo.Core
Assembly
ThinkGeo.Core.dll

Provides data for the VertexAdded. event.

public class VertexAddedTrackInteractiveOverlayEventArgs : EventArgs
Inheritance
VertexAddedTrackInteractiveOverlayEventArgs
Inherited Members

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.

Properties

AddedVertex

Gets or sets the vertex added.

public Vertex AddedVertex { get; set; }

Property Value

Vertex

AffectedFeature

Gets or sets the Feature with vertex added.

public Feature AffectedFeature { get; set; }

Property Value

Feature