Table of Contents

Class VertexRemovingEditInteractiveOverlayEventArgs

Namespace
ThinkGeo.Core
Assembly
ThinkGeo.Core.dll

Provides data for the VertexRemoving. event.

public class VertexRemovingEditInteractiveOverlayEventArgs : EventArgs
Inheritance
VertexRemovingEditInteractiveOverlayEventArgs
Inherited Members

Constructors

VertexRemovingEditInteractiveOverlayEventArgs()

Constructor of VertexRemovingEditInteractiveOverlayEventArgs class.

public VertexRemovingEditInteractiveOverlayEventArgs()

Remarks

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

VertexRemovingEditInteractiveOverlayEventArgs(bool, Feature, Vertex)

Constructor of VertexRemovingEditInteractiveOverlayEventArgs class.

public VertexRemovingEditInteractiveOverlayEventArgs(bool cancel, Feature affectedFeature, Vertex removingVertex)

Parameters

cancel bool

This parameter specified the cancel property.

affectedFeature Feature

This parameter specified the affectedVertex feature property.

removingVertex Vertex

This parameter specified the target vertex to be removed.

Properties

AffectedFeature

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

public Feature AffectedFeature { get; set; }

Property Value

Feature

Cancel

Gets or sets the action to be canceled or not.

public bool Cancel { get; set; }

Property Value

bool

RemovingVertex

Gets or sets the vertex to be removed.

public Vertex RemovingVertex { get; set; }

Property Value

Vertex