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


IRasterGeometryProc.PointsTransform Method (ArcObjects .NET 10.8 SDK)
ArcObjects Help for .NET developers > ArcObjects Help for .NET developers > ArcObjects namespaces > DataSourcesRaster > ESRI.ArcGIS.DataSourcesRaster > Interfaces > IR > IRasterGeometryProc Interface > IRasterGeometryProc.PointsTransform Method
ArcGIS Developer Help

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
);
[C++]
Parameters
inPoints [in]

inPoints is a parameter of type IPointCollection* isForward [in]
isForward is a parameter of type bool pRaster [in]
pRaster is a parameter of type IRaster*

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