Skip to content

VertexAddingTrackInteractiveOverlayEventArgs

Namespace: ThinkGeo.Core

Provides data for the VertexAdding. event.

public class VertexAddingTrackInteractiveOverlayEventArgs : System.EventArgs

Inheritance ObjectEventArgsVertexAddingTrackInteractiveOverlayEventArgs

Properties

Cancel

Gets or sets the action to be canceled or not.

public bool Cancel { get; set; }

Property Value

Boolean

AddingVertex

Gets or sets the feature to be used to add vertex on when tracking shape.

public Vertex AddingVertex { get; set; }

Property Value

Vertex

AffectedFeature

Gets or sets the Feature to be used to add vertex to.

public Feature AffectedFeature { get; set; }

Property Value

Feature

TargetPointShape

public PointShape TargetPointShape { get; set; }

Property Value

PointShape

Constructors

VertexAddingTrackInteractiveOverlayEventArgs()

Constructor of VertexAddingTrackInteractiveOverlayEventArgs class.

public VertexAddingTrackInteractiveOverlayEventArgs()

Remarks:

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

VertexAddingTrackInteractiveOverlayEventArgs(Vertex, Feature, Boolean)

Constructor of VertexAddingTrackInteractiveOverlayEventArgs class.

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.