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


IRasterGeometryProc.PointsTransform Method (ArcObjects .NET 10.4 SDK)
ArcObjects Library Reference (DataSourcesRaster)  

IRasterGeometryProc.PointsTransform Method

Transforms a set of points based upon the transformation being applied to the input raster.

[Visual Basic .NET]
Public Function PointsTransform ( _
    ByVal inPoints As IPointCollection, _
    ByVal isForward As Boolean, _
    ByVal pRaster As IRaster _
) As IPointCollection
[C#]
public IPointCollection PointsTransform (
    IPointCollection inPoints,
    bool isForward,
    IRaster pRaster
);
[C++]
HRESULT PointsTransform(
  IPointCollection* inPoints,
  VARIANT_BOOL isForward,
  IRaster* pRaster,
  IPointCollection** outPoints
);
[C++]

Parameters inPoints [in]
inPoints is a parameter of type IPointCollection isForward [in] isForward is a parameter of type VARIANT_BOOL pRaster [in]
pRaster is a parameter of type IRaster outPoints [out, retval]
outPoints is a parameter of type IPointCollection

Product Availability

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

Remarks

The PointsTransform method transforms a set of points and using the transformations currently held in the input raster. The points can be transformed forwards or backwards.

See Also

IRasterGeometryProc Interface