This document is archived and information here might be outdated. Recommended version. |
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,
System.Double* inPoints,
System.Int32* 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*
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.