Class TouchMovedTrackInteractiveOverlayEventArgs
Provides data for the
public class TouchMovedTrackInteractiveOverlayEventArgs : EventArgs
- Inheritance
-
TouchMovedTrackInteractiveOverlayEventArgs
- Inherited Members
Constructors
TouchMovedTrackInteractiveOverlayEventArgs()
This is the default constructor of this parameter.
public TouchMovedTrackInteractiveOverlayEventArgs()
Remarks
If you use this constructor, you have to set the properties manually before use.
TouchMovedTrackInteractiveOverlayEventArgs(Vertex, Feature)
This is the commonly used constructor.
public TouchMovedTrackInteractiveOverlayEventArgs(Vertex movedVertex, Feature affectedFeature)
Parameters
movedVertex
VertexThis parameter specified the target vertex to be moved.
affectedFeature
FeatureThis parameter specified the affected feature.
Properties
AffectedFeature
This property gets or sets the Feature to be affected.
public Feature AffectedFeature { get; set; }
Property Value
MovedVertex
This property gets or sets the vertex to be moved.
public Vertex MovedVertex { get; set; }