ArcObjects Library Reference (Geometry)  

ITransformation.TransformPointsIF Method

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

[Visual Basic .NET]
Public Sub TransformPointsIF ( _
    ByVal direction As esriTransformDirection, _
    ByVal cPoints As Integer, _
    ByRef inPoints As Integer, _
    ByRef outPoints As Double _
)
[C#]
public void TransformPointsIF (
    esriTransformDirection direction,
    int cPoints,
    ref int inPoints,
    ref double outPoints
);
[C++]
HRESULT TransformPointsIF(
  esriTransformDirection direction,
  long cPoints,
  long* inPoints,
  double* 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 double

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