This document is archived and information here might be outdated.  Recommended version.


ITransformation.TransformPointsII Method (ArcObjects .NET 10.5 SDK)
ArcObjects Library Reference (Geometry)  

ITransformation.TransformPointsII Method

Transforms integer points to integer points (or do the inverse).

[Visual Basic .NET]
Public Sub TransformPointsII ( _
    ByVal Direction As esriTransformDirection, _
    ByVal cPoints As Integer, _
    ByRef inPoints As Integer, _
    ByRef outPoints As Integer _
)
[C#]
public void TransformPointsII (
    esriTransformDirection Direction,
    int cPoints,
    ref int inPoints,
    ref int outPoints
);
[C++]
HRESULT TransformPointsII(
  esriTransformDirection Direction,
  long cPoints,
  long* inPoints,
  long* outPoints
);
[C++]

Parameters Direction
Direction is a parameter of type esriTransformDirection cPoints cPoints is a parameter of type long inPoints inPoints is a parameter of type long outPoints outPoints is a parameter of type long

Product Availability

Available with ArcGIS Engine, ArcGIS Desktop, and ArcGIS Server.

Remarks

The cPoints parameter is the number of points you wish to transform. inPoints and outPoints are one-dimensional arrays so you must interleave coordinate pairs into the arrays.

See Also

ITransformation Interface