Skip to content

VertexRemovedEditInteractiveOverlayEventArgs

Namespace: ThinkGeo.Core

Provides data for the VertexRemoved. event.

public class VertexRemovedEditInteractiveOverlayEventArgs : System.EventArgs

Inheritance ObjectEventArgsVertexRemovedEditInteractiveOverlayEventArgs

Properties

AffectedFeature

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

public Feature AffectedFeature { get; set; }

Property Value

Feature

RemovedVertex

Gets or sets the vertex removed.

public Vertex RemovedVertex { get; set; }

Property Value

Vertex

Constructors

VertexRemovedEditInteractiveOverlayEventArgs()

Constructor of VertexRemovedEditInteractiveOverlayEventArgs class.

public VertexRemovedEditInteractiveOverlayEventArgs()

Remarks:

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

VertexRemovedEditInteractiveOverlayEventArgs(Feature, Vertex)

Constructor of VertexRemovedEditInteractiveOverlayEventArgs class.

public VertexRemovedEditInteractiveOverlayEventArgs(Feature affectedFeature, Vertex removedVertex)

Parameters

affectedFeature Feature
This parameter specified the affectedVertex feature property.

removedVertex Vertex
This parameter specified the target vertex removed.