Skip to content

VertexAddingEditInteractiveOverlayEventArgs

Namespace: ThinkGeo.Core

Provides data for the VertexAddingEditInteractiveOverlay event.

public class VertexAddingEditInteractiveOverlayEventArgs : System.EventArgs

Inheritance objectEventArgsVertexAddingEditInteractiveOverlayEventArgs

Properties

AffectedFeature

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

public Feature AffectedFeature { get; set; }

Property Value

Feature

AddingVertex

Gets or sets the vertex to be added.

public Vertex AddingVertex { get; set; }

Property Value

Vertex

Cancel

Gets or sets the action to be canceled or not.

public bool Cancel { get; set; }

Property Value

bool

TargetPointShape

Gets or sets the TargetPointShape.

public PointShape TargetPointShape { get; set; }

Property Value

PointShape

Constructors

VertexAddingEditInteractiveOverlayEventArgs()

Constructor of VertexAddingEditInteractiveOverlayEventArgs class.

public VertexAddingEditInteractiveOverlayEventArgs()

Remarks:

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

VertexAddingEditInteractiveOverlayEventArgs(bool, Feature, Vertex)

Constructor of VertexAddingEditInteractiveOverlayEventArgs class.

public VertexAddingEditInteractiveOverlayEventArgs(bool cancel, Feature affectedFeature, Vertex addingVertex)

Parameters

cancel bool
This parameter specified the cancel property.

affectedFeature Feature
This parameter specified the affectedVertex feature property.

addingVertex Vertex
This parameter specified the target vertex to be added.