Skip to content

VertexAddedEditInteractiveOverlayEventArgs

Namespace: ThinkGeo.Core

Provides data for the VertexAdded. event.

public class VertexAddedEditInteractiveOverlayEventArgs : System.EventArgs

Inheritance ObjectEventArgsVertexAddedEditInteractiveOverlayEventArgs

Properties

AffectedFeature

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

public Feature AffectedFeature { get; set; }

Property Value

Feature

AddedVertex

Gets or sets the vertex added.

public Vertex AddedVertex { get; set; }

Property Value

Vertex

Constructors

VertexAddedEditInteractiveOverlayEventArgs()

Constructor of VertexAddedEditInteractiveOverlayEventArgs class.

public VertexAddedEditInteractiveOverlayEventArgs()

Remarks:

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

VertexAddedEditInteractiveOverlayEventArgs(Feature, Vertex)

Constructor of VertexAddedEditInteractiveOverlayEventArgs class.

public VertexAddedEditInteractiveOverlayEventArgs(Feature affectedFeature, Vertex addedVertex)

Parameters

affectedFeature Feature
This parameter specified the affectedVertex feature property.

addedVertex Vertex
This parameter specified the target vertex added.