Skip to content

MouseMovedTrackInteractiveOverlayEventArgs

Namespace: ThinkGeo.UI.Android

Provides data for the MouseMoved. event.

public class MouseMovedTrackInteractiveOverlayEventArgs : System.EventArgs

Inheritance ObjectEventArgsMouseMovedTrackInteractiveOverlayEventArgs

Properties

MovedVertex

This property gets or sets the vertex to be moved.

public Vertex MovedVertex { get; set; }

Property Value

Vertex

AffectedFeature

This property gets or sets the Feature to be affected.

public Feature AffectedFeature { get; set; }

Property Value

Feature

Constructors

MouseMovedTrackInteractiveOverlayEventArgs()

This is the default constructor of this parameter.

public MouseMovedTrackInteractiveOverlayEventArgs()

Remarks:

If you use this constructor, you have to set the properties manually before use.

MouseMovedTrackInteractiveOverlayEventArgs(Vertex, Feature)

This is the commonly used constructor.

public MouseMovedTrackInteractiveOverlayEventArgs(Vertex movedVertex, Feature affectedFeature)

Parameters

movedVertex Vertex
This parameter specified the target vertex to be moved.

affectedFeature Feature
This parameter specified the affected feature.