Skip to content

VertexRemovedEditInteractiveOverlayEventArgs

Namespace: ThinkGeo.UI.Android

Provides data for the VertexRemoved. event.

public class VertexRemovedEditInteractiveOverlayEventArgs : System.EventArgs

Inheritance ObjectEventArgsVertexRemovedEditInteractiveOverlayEventArgs

Properties

AffectedVertexFeature

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

public Feature AffectedVertexFeature { get; set; }

Property Value

Feature

RemovedVertex

This property gets or sets the vertex removed.

public Vertex RemovedVertex { get; set; }

Property Value

Vertex

Constructors

VertexRemovedEditInteractiveOverlayEventArgs()

This is the default constructor of this parameter.

public VertexRemovedEditInteractiveOverlayEventArgs()

Remarks:

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

VertexRemovedEditInteractiveOverlayEventArgs(Feature, Vertex)

This is the commonly used constructor.

public VertexRemovedEditInteractiveOverlayEventArgs(Feature affectedVertexFeature, Vertex removedVertex)

Parameters

affectedVertexFeature Feature
This parameter specified the affectedVertex feature property.

removedVertex Vertex
This parameter specified the target vertex removed.