VertexRemovedEditInteractiveOverlayEventArgs¶
Namespace: ThinkGeo.Core
Provides data for the VertexRemoved. event.
public class VertexRemovedEditInteractiveOverlayEventArgs : System.EventArgs
Inheritance Object → EventArgs → VertexRemovedEditInteractiveOverlayEventArgs
Properties¶
AffectedFeature¶
Gets or sets the Feature to be used to remove vertex.
public Feature AffectedFeature { get; set; }
Property Value¶
RemovedVertex¶
Gets or sets the vertex removed.
public Vertex RemovedVertex { get; set; }
Property Value¶
Constructors¶
VertexRemovedEditInteractiveOverlayEventArgs()¶
Constructor of VertexRemovedEditInteractiveOverlayEventArgs class.
public VertexRemovedEditInteractiveOverlayEventArgs()
Remarks:
If you use this constructor, you have to set the properties manually before use.
VertexRemovedEditInteractiveOverlayEventArgs(Feature, Vertex)¶
Constructor of VertexRemovedEditInteractiveOverlayEventArgs class.
public VertexRemovedEditInteractiveOverlayEventArgs(Feature affectedFeature, Vertex removedVertex)
Parameters¶
affectedFeature
Feature
This parameter specified the affectedVertex feature property.
removedVertex
Vertex
This parameter specified the target vertex removed.