Class VertexAddingTrackInteractiveOverlayEventArgs
Provides data for the
public class VertexAddingTrackInteractiveOverlayEventArgs : EventArgs
- Inheritance
-
VertexAddingTrackInteractiveOverlayEventArgs
- Inherited Members
Constructors
VertexAddingTrackInteractiveOverlayEventArgs()
Constructor of VertexAddingTrackInteractiveOverlayEventArgs class.
public VertexAddingTrackInteractiveOverlayEventArgs()
Remarks
If you use this constructor, you have to set the properties manually before use.
VertexAddingTrackInteractiveOverlayEventArgs(Vertex, Feature, bool)
Constructor of VertexAddingTrackInteractiveOverlayEventArgs class.
public VertexAddingTrackInteractiveOverlayEventArgs(Vertex addingVertex, Feature affectedFeature, bool cancel)
Parameters
addingVertex
VertexThis parameter specified the vertex is going to be added.
affectedFeature
FeatureThis parameter specified the feature to be used to add vertex on when tracking shape.
cancel
boolThis parameter specified the cancel property.
Properties
AddingVertex
Gets or sets the feature to be used to add vertex on when tracking shape.
public Vertex AddingVertex { get; set; }
Property Value
AffectedFeature
Gets or sets the Feature to be used to add vertex to.
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
TargetPointShape
public PointShape TargetPointShape { get; set; }