ICoordinateTransformationTransform Method (Point, Point) | 
 
            Transforms an array of System.Windows.Point.
            
 
    Namespace: 
   Ptv.Components.Projections
    Assembly:
   Ptv.Components.Projections (in Ptv.Components.Projections.dll) Version: 1.7.10.0
Syntaxvoid Transform(
	Point[] pointsIn,
	Point[] pointsOut = null
)
Sub Transform ( 
	pointsIn As Point(),
	Optional pointsOut As Point() = Nothing
)
void Transform(
	array<Point>^ pointsIn, 
	array<Point>^ pointsOut = nullptr
)
abstract Transform : 
        pointsIn : Point[] * 
        ?pointsOut : Point[] 
(* Defaults:
        let _pointsOut = defaultArg pointsOut null
*)
-> unit 
Parameters
- pointsIn
 - Type: System.WindowsPoint
Array containing the points to transform. - pointsOut (Optional)
 - Type: System.WindowsPoint
Array in which to put the transformed points. 
Exceptions
RemarksIf pointsOut is set to null the transformed locations are written back to 
            the input array. It is also valid to specify the input array in pointsOut, which is 
            the same as setting pointsOut to null.
See Also