Converts a MousePoint's x and y location to a map coordinate point

Namespace:  EGIS.Controls
Assembly:  EGIS.Controls (in EGIS.Controls.dll)

Syntax

Visual Basic
Public Function MousePosToGisPoint ( _
	mouseX As Integer, _
	mouseY As Integer _
) As PointD
C#
public PointD MousePosToGisPoint(
	int mouseX,
	int mouseY
)
Visual C++
public:
PointD MousePosToGisPoint(
	int mouseX, 
	int mouseY
)
JavaScript
function mousePosToGisPoint(mouseX, mouseY);

Parameters

mouseX
Type: System..::..Int32
mouseY
Type: System..::..Int32

Return Value

Remarks

This method is being deprecated - use PixelCoordToGisPoint PixelCoordToGisPoint(Int32, Int32)

See Also