CustomFormattedMouseCoordinateMapToolEventArgs¶
Namespace: ThinkGeo.UI.Wpf
Provides data for formatting the mouse coordinate display.
public class CustomFormattedMouseCoordinateMapToolEventArgs : System.EventArgs
Inheritance Object → EventArgs → CustomFormattedMouseCoordinateMapToolEventArgs
Properties¶
WorldCoordinate¶
Gets or sets the world coordinate located under the mouse pointer.
public PointShape WorldCoordinate { get; set; }
Property Value¶
PointShape
Result¶
Gets or sets the formatted text displayed by the mouse coordinate tool.
public string Result { get; set; }
Property Value¶
Constructors¶
CustomFormattedMouseCoordinateMapToolEventArgs()¶
Initializes a new instance of the CustomFormattedMouseCoordinateMapToolEventArgs class.
public CustomFormattedMouseCoordinateMapToolEventArgs()
CustomFormattedMouseCoordinateMapToolEventArgs(PointShape)¶
Initializes a new instance of the CustomFormattedMouseCoordinateMapToolEventArgs class.
public CustomFormattedMouseCoordinateMapToolEventArgs(PointShape worldCoordinate)
Parameters¶
worldCoordinate PointShape
The world coordinate located under the mouse cursor.