Table of Contents

Class VertexRemovedEditInteractiveOverlayEventArgs

Namespace
ThinkGeo.Core
Assembly
ThinkGeo.Core.dll

Provides data for the VertexRemoved. event.

public class VertexRemovedEditInteractiveOverlayEventArgs : EventArgs
Inheritance
VertexRemovedEditInteractiveOverlayEventArgs
Inherited Members

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.

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