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


ITransformationOp.ReScale Method (ArcObjects .NET 10.8 SDK)
ArcObjects Help for .NET developers > ArcObjects Help for .NET developers > ArcObjects namespaces > GeoAnalyst > ESRI.ArcGIS.GeoAnalyst > Interfaces > IT > ITransformationOp Interface > ITransformationOp.ReScale Method
ArcGIS Developer Help

ITransformationOp.ReScale Method

Scales the coordinates of a raster.

[Visual Basic .NET]
Public Function ReScale ( _
    ByVal inData As IGeoDataset, _
    ByVal xScale As Double, _
    ByVal yScale As Double _
) As IGeoDataset
[C#]
public IGeoDataset ReScale (
    IGeoDataset inData,
    double xScale,
    double yScale
);
[C++]
HRESULT ReScale(
  IGeoDataset* inData,
  double xScale,
  double yScale
);
[C++]
Parameters
inData [in]

inData is a parameter of type IGeoDataset* xScale [in]
xScale is a parameter of type double yScale [in]
yScale is a parameter of type double

Product Availability

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

Remarks

inData

an input Raster, RasterDataset, RasterBand, or RasterDescriptor

xScale

Factor to scale the cell size in the x direction by.
The factor must be greater than 0.

yScale

Factor to scale the cell size in the y direction by.
The factor must be greater than 0.

See Also

ITransformationOp Interface