TouchMovingTrackInteractiveOverlayEventArgs¶
Namespace: ThinkGeo.Core
Provides data for the MouseMoved. event.
public class TouchMovingTrackInteractiveOverlayEventArgs : System.EventArgs
Inheritance Object → EventArgs → TouchMovingTrackInteractiveOverlayEventArgs
Properties¶
TargetVertex¶
This property gets or sets the vertex to be moved.
public Vertex TargetVertex { get; }
Property Value¶
Cancel¶
public bool Cancel { get; set; }
Property Value¶
Constructors¶
TouchMovingTrackInteractiveOverlayEventArgs()¶
This is the default constructor of this parameter.
public TouchMovingTrackInteractiveOverlayEventArgs()
Remarks:
If you use this constructor, you have to set the properties manually before use.
TouchMovingTrackInteractiveOverlayEventArgs(Vertex)¶
This is the commonly used constructor.
public TouchMovingTrackInteractiveOverlayEventArgs(Vertex targetVertex)
Parameters¶
targetVertex
Vertex
This parameter specified the target vertex to be moved.