Table of Contents

Class MouseMovedTrackInteractiveOverlayEventArgs

Namespace
ThinkGeo.Core
Assembly
ThinkGeo.Core.dll

Provides data for the MouseMoved. event.

public class MouseMovedTrackInteractiveOverlayEventArgs : EventArgs
Inheritance
MouseMovedTrackInteractiveOverlayEventArgs
Inherited Members

Constructors

MouseMovedTrackInteractiveOverlayEventArgs()

Constructor of MouseMovedTrackInteractiveOverlayEventArgs class.

public MouseMovedTrackInteractiveOverlayEventArgs()

Remarks

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

MouseMovedTrackInteractiveOverlayEventArgs(Vertex, Feature)

Constructor of MouseMovedTrackInteractiveOverlayEventArgs class.

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.

Properties

AffectedFeature

Gets or sets the Feature to be affected.

public Feature AffectedFeature { get; set; }

Property Value

Feature

MovedVertex

Gets or sets the vertex to be moved.

public Vertex MovedVertex { get; set; }

Property Value

Vertex