Table of Contents

Class TrackStartingTrackInteractiveOverlayEventArgs

Namespace
ThinkGeo.Core
Assembly
ThinkGeo.Core.dll

Provides data for the TrackStarting. event.

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

startingVertex Vertex

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

cancel bool

This parameter specified the cancel property.

Properties

Cancel

Gets or sets the action to be canceled or not.

public bool Cancel { get; set; }

Property Value

bool

StartingVertex

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

public Vertex StartingVertex { get; set; }

Property Value

Vertex