Class VertexRemovingEditInteractiveOverlayEventArgs
Provides data for the
public class VertexRemovingEditInteractiveOverlayEventArgs : EventArgs
- Inheritance
-
VertexRemovingEditInteractiveOverlayEventArgs
- Inherited Members
Constructors
VertexRemovingEditInteractiveOverlayEventArgs()
Constructor of VertexRemovingEditInteractiveOverlayEventArgs class.
public VertexRemovingEditInteractiveOverlayEventArgs()
Remarks
If you use this constructor, you have to set the properties manually before use.
VertexRemovingEditInteractiveOverlayEventArgs(bool, Feature, Vertex)
Constructor of VertexRemovingEditInteractiveOverlayEventArgs class.
public VertexRemovingEditInteractiveOverlayEventArgs(bool cancel, Feature affectedFeature, Vertex removingVertex)
Parameters
cancel
boolThis parameter specified the cancel property.
affectedFeature
FeatureThis parameter specified the affectedVertex feature property.
removingVertex
VertexThis parameter specified the target vertex to be removed.
Properties
AffectedFeature
Gets or sets the Feature to be used to remove vertex.
public Feature AffectedFeature { get; set; }
Property Value
Cancel
Gets or sets the action to be canceled or not.
public bool Cancel { get; set; }
Property Value
RemovingVertex
Gets or sets the vertex to be removed.
public Vertex RemovingVertex { get; set; }