Skip to content

TrackStartingTrackInteractiveOverlayEventArgs

Namespace: ThinkGeo.Core

Provides data for the TrackStarting. event.

public class TrackStartingTrackInteractiveOverlayEventArgs : System.EventArgs

Inheritance ObjectEventArgsTrackStartingTrackInteractiveOverlayEventArgs

Properties

Cancel

Gets or sets the action to be canceled or not.

public bool Cancel { get; set; }

Property Value

Boolean

StartingVertex

Gets or sets the started vertex when tracking shape action is being to start.

public Vertex StartingVertex { get; set; }

Property Value

Vertex

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, Boolean)

Constructor of TrackStartingTrackInteractiveOverlayEventArgs class.

public TrackStartingTrackInteractiveOverlayEventArgs(Vertex startingVertex, bool cancel)

Parameters

startingVertex Vertex
This parameter specified the started vertex when tracking shape action is being to start.

cancel Boolean
This parameter specified the cancel property.