TrackEndingTrackInteractiveOverlayEventArgs¶
Namespace: ThinkGeo.Core
Provides data for the TrackEnding. event.
public class TrackEndingTrackInteractiveOverlayEventArgs : System.EventArgs
Inheritance Object → EventArgs → TrackEndingTrackInteractiveOverlayEventArgs
Properties¶
TrackShape¶
Gets or sets the shape to be tracking out.
public BaseShape TrackShape { get; set; }
Property Value¶
Cancel¶
Gets or sets the action to be canceled or not.
public bool Cancel { get; set; }
Property Value¶
Constructors¶
TrackEndingTrackInteractiveOverlayEventArgs()¶
Constructor of TrackEndingTrackInteractiveOverlayEventArgs class.
public TrackEndingTrackInteractiveOverlayEventArgs()
Remarks:
If you use this constructor, you have to set the properties manually before use.
TrackEndingTrackInteractiveOverlayEventArgs(BaseShape, Boolean)¶
Constructor of TrackEndingTrackInteractiveOverlayEventArgs class.
public TrackEndingTrackInteractiveOverlayEventArgs(BaseShape shape, bool cancel)
Parameters¶
shape
BaseShape
This parameter specified the shape to be tracking out.
cancel
Boolean
This parameter specified the cancel property.