ICoordinateTransformationTransform Method (Double, Double, Double, Double) | 
 
            Transforms a coordinate.
            
 
    Namespace: 
   Ptv.Components.Projections
    Assembly:
   Ptv.Components.Projections (in Ptv.Components.Projections.dll) Version: 1.7.10.0
Syntaxvoid Transform(
	double xin,
	double yin,
	out double xout,
	out double yout
)
Sub Transform ( 
	xin As Double,
	yin As Double,
	<OutAttribute> ByRef xout As Double,
	<OutAttribute> ByRef yout As Double
)
void Transform(
	double xin, 
	double yin, 
	[OutAttribute] double% xout, 
	[OutAttribute] double% yout
)
abstract Transform : 
        xin : float * 
        yin : float * 
        xout : float byref * 
        yout : float byref -> unit 
Parameters
- xin
 - Type: SystemDouble
Value containing the x-coordinate. - yin
 - Type: SystemDouble
Value containing the y-coordinate. - xout
 - Type: SystemDouble
On return, contains the transformed x-coordinate. - yout
 - Type: SystemDouble
On return, contains the transformed y-coordinate. 
Exceptions
See Also