Table of Contents

Class VertexAddedEditInteractiveOverlayEventArgs

Namespace
ThinkGeo.Core
Assembly
ThinkGeo.Core.dll

Provides data for the VertexAdded. event.

public class VertexAddedEditInteractiveOverlayEventArgs : EventArgs
Inheritance
VertexAddedEditInteractiveOverlayEventArgs
Inherited Members

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.

Properties

AddedVertex

Gets or sets the vertex added.

public Vertex AddedVertex { get; set; }

Property Value

Vertex

AffectedFeature

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

public Feature AffectedFeature { get; set; }

Property Value

Feature