ArcObjects Library Reference (Geometry)  

ITransformation3D.Transform Method

Applies the current transformation to a set of points. Use of methods on ITransform3D is recommended instead of this method.

[Visual Basic .NET]
Public Sub Transform ( _
    ByVal numPoints As Integer, _
    ByRef originalPoints As WKSPointZ, _
    ByRef transformedPoints As WKSPointZ _
)
[C#]
public void Transform (
    int numPoints,
    ref WKSPointZ originalPoints,
    ref WKSPointZ transformedPoints
);
[C++]
HRESULT Transform(
  long numPoints,
  _WKSPointZ* originalPoints,
  _WKSPointZ* transformedPoints
);
[C++]

Parameters

numPoints   numPoints is a parameter of type long originalPoints [in]

  originalPoints is a parameter of type _WKSPointZ

transformedPoints [out]

  transformedPoints is a parameter of type _WKSPointZ

Product Availability

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

See Also

ITransformation3D Interface