ICoordinateSystemConverterReprojectPoint Method (Double, Double, Double, Double) | 
 
            Reproject the given X and Y coordinates from the starting projection to the end projection.
            
 
    Namespace: 
   Dundas.BI.Utility.Map
    Assembly:
   Dundas.BI.Core (in Dundas.BI.Core.dll) Version: 2.0.0.0 (25.3.0.1000)
Syntaxvoid ReprojectPoint(
	double x,
	double y,
	out double newX,
	out double newY
)
Sub ReprojectPoint ( 
	x As Double,
	y As Double,
	<OutAttribute> ByRef newX As Double,
	<OutAttribute> ByRef newY As Double
)
void ReprojectPoint(
	double x, 
	double y, 
	[OutAttribute] double% newX, 
	[OutAttribute] double% newY
)
abstract ReprojectPoint : 
        x : float * 
        y : float * 
        newX : float byref * 
        newY : float byref -> unit 
Parameters
- x
 - Type: SystemDouble
X coordinate to reproject. - y
 - Type: SystemDouble
Y coordinate to reproject. - newX
 - Type: SystemDouble
Reprojected X coordinate. - newY
 - Type: SystemDouble
Reprojected Y coordinate. 
See Also