VertexAddedEditInteractiveOverlayEventArgs¶
Namespace: ThinkGeo.UI.Android
Provides data for the VertexAdded. event.
public class VertexAddedEditInteractiveOverlayEventArgs : System.EventArgs
Inheritance Object → EventArgs → VertexAddedEditInteractiveOverlayEventArgs
Properties¶
AffectedVertexFeature¶
This property gets or sets the Feature to be used to remove vertex.
public Feature AffectedVertexFeature { get; set; }
Property Value¶
Feature
AddedVertex¶
This property gets or sets the vertex added.
public Vertex AddedVertex { get; set; }
Property Value¶
Vertex
Constructors¶
VertexAddedEditInteractiveOverlayEventArgs()¶
This is the default constructor of this parameter.
public VertexAddedEditInteractiveOverlayEventArgs()
Remarks:
If you use this constructor, you have to set the properties manually before use.
VertexAddedEditInteractiveOverlayEventArgs(Feature, Vertex)¶
This is the commonly used constructor.
public VertexAddedEditInteractiveOverlayEventArgs(Feature affectedVertexFeature, Vertex addedVertex)
Parameters¶
affectedVertexFeature
Feature
This parameter specified the affectedVertex feature property.
addedVertex
Vertex
This parameter specified the target vertex added.