Table of Contents

Class VertexMovedEditInteractiveOverlayEventArgs

Namespace
ThinkGeo.Core
Assembly
ThinkGeo.Core.dll

Provides data for the VertexMoved. event.

public class VertexMovedEditInteractiveOverlayEventArgs : EventArgs
Inheritance
VertexMovedEditInteractiveOverlayEventArgs
Inherited Members

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.

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