Skip to content

VertexMovedEditInteractiveOverlayEventArgs

Namespace: ThinkGeo.Core

Provides data for the VertexMoved. event.

public class VertexMovedEditInteractiveOverlayEventArgs : System.EventArgs

Inheritance ObjectEventArgsVertexMovedEditInteractiveOverlayEventArgs

Properties

AffectedFeature

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

public Feature AffectedFeature { get; set; }

Property Value

Feature

MovedVertex

Gets or sets the vertex moved.

public Vertex MovedVertex { get; set; }

Property Value

Vertex

Constructors

VertexMovedEditInteractiveOverlayEventArgs()

Constructor of VertexMovedEditInteractiveOverlayEventArgs class.

public VertexMovedEditInteractiveOverlayEventArgs()

Remarks:

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

VertexMovedEditInteractiveOverlayEventArgs(Feature, Vertex)

Constructor of VertexMovedEditInteractiveOverlayEventArgs class.

public VertexMovedEditInteractiveOverlayEventArgs(Feature affectedFeature, Vertex movedVertex)

Parameters

affectedFeature Feature
This parameter specified the affectedVertex feature property.

movedVertex Vertex
This parameter specified the target vertex moved.