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


ITransformationOp.Clip 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.Clip Method
ArcGIS Developer Help

ITransformationOp.Clip Method

Subsets a raster using a rectangle.

[Visual Basic .NET]
Public Function Clip ( _
    ByVal GeoDataset As IGeoDataset, _
    ByVal Rectangle As IEnvelope _
) As IGeoDataset
[C#]
public IGeoDataset Clip (
    IGeoDataset GeoDataset,
    IEnvelope Rectangle
);
[C++]
HRESULT Clip(
  IGeoDataset* GeoDataset,
  IEnvelope* Rectangle
);
[C++]
Parameters
GeoDataset [in]

GeoDataset is a parameter of type IGeoDataset* Rectangle [in]
Rectangle is a parameter of type IEnvelope*

Product Availability

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

Remarks

GeoDataset

an input Raster, RasterDataset, RasterBand, or RasterDescriptor

Rectangle

an IEnvelope identifying the lower-left and upper-right coordinates of the rectangle defining the area to be subset from the input GeoDatabase

The coordinates are specified in map units and are in the same units as the GeoDataset.

See Also

ITransformationOp Interface