Converts a pixel point in terms of the control into projected coordinates in terms of the map data.


Namespace: MapWinView
Assembly: MapWinView (in MapWinView.dll)

Syntax

Visual Basic (Declaration)
Public Function PixelToProj( _ 
   ByVal PixelX As Integer,  _ 
   ByVal PixelY As Integer,  _ 
   ByRef ProjX As Double,  _ 
   ByRef ProjY As Double _ 
) As Boolean
C#
public bool PixelToProj(
   int PixelX,
   int PixelY,
   ref double ProjX,
   ref double ProjY
)
C++
public:
 bool PixelToProj(
   int PixelX,
   int PixelY,
   double% ProjX,
   double% ProjY
) sealed 
J#
public bool PixelToProj(
   int PixelX,
   int PixelY,
   double ProjX,
   double ProjY
)
JScript
public  function PixelToProj(
   PixelX : int,
   PixelY : int,
   ProjX : double,
   ProjY : double
) : bool

See Also