TrackStartingTrackInteractiveOverlayEventArgs¶
Namespace: ThinkGeo.UI.Android
Provides data for the TrackStarting. event.
public class TrackStartingTrackInteractiveOverlayEventArgs : System.EventArgs
Inheritance Object → EventArgs → TrackStartingTrackInteractiveOverlayEventArgs
Properties¶
Cancel¶
This property gets or sets the action to be canceled or not.
public bool Cancel { get; set; }
Property Value¶
StartingVertex¶
This property gets or sets the started vertex when tracking shape action is being to start.
public Vertex StartingVertex { get; set; }
Property Value¶
Vertex
Constructors¶
TrackStartingTrackInteractiveOverlayEventArgs()¶
This is the default constructor of this parameter.
public TrackStartingTrackInteractiveOverlayEventArgs()
Remarks:
If you use this constructor, you have to set the properties manually before use.
TrackStartingTrackInteractiveOverlayEventArgs(Vertex, Boolean)¶
This is the commonly used constructor.
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.