ArcObjects Library Reference (Geometry)  

ITransformation.TransformPointsFI Method

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

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

Parameters

direction

  direction is a parameter of type esriTransformDirection

cPoints   cPoints is a parameter of type long inPoints [in]   inPoints is a parameter of type double 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