VertexRemovingEditInteractiveOverlayEventArgs¶
Namespace: ThinkGeo.Core
Provides data for the VertexRemoving. event.
public class VertexRemovingEditInteractiveOverlayEventArgs : System.EventArgs
Inheritance Object → EventArgs → VertexRemovingEditInteractiveOverlayEventArgs
Properties¶
AffectedFeature¶
Gets or sets the Feature to be used to remove vertex.
public Feature AffectedFeature { get; set; }
Property Value¶
RemovingVertex¶
Gets or sets the vertex to be removed.
public Vertex RemovingVertex { get; set; }
Property Value¶
Cancel¶
Gets or sets the action to be canceled or not.
public bool Cancel { get; set; }
Property Value¶
Constructors¶
VertexRemovingEditInteractiveOverlayEventArgs()¶
Constructor of VertexRemovingEditInteractiveOverlayEventArgs class.
public VertexRemovingEditInteractiveOverlayEventArgs()
Remarks:
If you use this constructor, you have to set the properties manually before use.
VertexRemovingEditInteractiveOverlayEventArgs(Boolean, Feature, Vertex)¶
Constructor of VertexRemovingEditInteractiveOverlayEventArgs class.
public VertexRemovingEditInteractiveOverlayEventArgs(bool cancel, Feature affectedFeature, Vertex removingVertex)
Parameters¶
cancel
Boolean
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.