PositionChangedMarkerEventArgs¶
Namespace: ThinkGeo.UI.Wpf
Provides data describing a marker's new and previous positions after it moves.
public class PositionChangedMarkerEventArgs : System.EventArgs
Inheritance Object → EventArgs → PositionChangedMarkerEventArgs
Properties¶
NewPosition¶
Gets or sets the marker's current position.
public PointShape NewPosition { get; set; }
Property Value¶
PointShape
PreviousPosition¶
Gets or sets the marker's position prior to the change.
public PointShape PreviousPosition { get; set; }
Property Value¶
PointShape
Constructors¶
PositionChangedMarkerEventArgs()¶
Initializes a new instance of the PositionChangedMarkerEventArgs class with empty positions.
public PositionChangedMarkerEventArgs()
PositionChangedMarkerEventArgs(PointShape, PointShape)¶
Initializes a new instance of the PositionChangedMarkerEventArgs class with specific marker coordinates.
public PositionChangedMarkerEventArgs(PointShape newPosition, PointShape previousPosition)
Parameters¶
newPosition PointShape
The marker's current position after the move.
previousPosition PointShape
The marker's position before the move occurred.