Class TrackStartingTrackInteractiveOverlayEventArgs
Provides data for the
public class TrackStartingTrackInteractiveOverlayEventArgs : EventArgs
- Inheritance
-
TrackStartingTrackInteractiveOverlayEventArgs
- Inherited Members
Constructors
TrackStartingTrackInteractiveOverlayEventArgs()
Constructor of TrackStartingTrackInteractiveOverlayEventArgs class.
public TrackStartingTrackInteractiveOverlayEventArgs()
Remarks
If you use this constructor, you have to set the properties manually before use.
TrackStartingTrackInteractiveOverlayEventArgs(Vertex, bool)
Constructor of TrackStartingTrackInteractiveOverlayEventArgs class.
public TrackStartingTrackInteractiveOverlayEventArgs(Vertex startingVertex, bool cancel)
Parameters
startingVertexVertexThis parameter specified the started vertex when tracking shape action is being to start.
cancelboolThis parameter specified the cancel property.
Properties
Cancel
Gets or sets the action to be canceled or not.
public bool Cancel { get; set; }
Property Value
StartingVertex
Gets or sets the started vertex when tracking shape action is being to start.
public Vertex StartingVertex { get; set; }