Skip to content

VertexRemovingEditInteractiveOverlayEventArgs

Namespace: ThinkGeo.UI.Android

Provides data for the VertexRemoving. event.

public class VertexRemovingEditInteractiveOverlayEventArgs : System.EventArgs

Inheritance ObjectEventArgsVertexRemovingEditInteractiveOverlayEventArgs

Properties

AffectedVertexFeature

This property gets or sets the Feature to be used to remove vertex.

public Feature AffectedVertexFeature { get; set; }

Property Value

Feature

RemovingVertex

This property gets or sets the vertex to be removed.

public Vertex RemovingVertex { get; set; }

Property Value

Vertex

Cancel

This property gets or sets the action to be canceled or not.

public bool Cancel { get; set; }

Property Value

Boolean

Constructors

VertexRemovingEditInteractiveOverlayEventArgs()

This is the default constructor of this parameter.

public VertexRemovingEditInteractiveOverlayEventArgs()

Remarks:

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

VertexRemovingEditInteractiveOverlayEventArgs(Boolean, Feature, Vertex)

This is the commonly used constructor.

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

Parameters

cancel Boolean
This parameter specified the cancel property.

affectedVertexFeature Feature
This parameter specified the affectedVertex feature property.

removingVertex Vertex
This parameter specified the target vertex to be removed.