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


ISurfaceOp.CutFill Method (ArcObjects .NET 10.8 SDK)
ArcObjects Help for .NET developers > ArcObjects Help for .NET developers > ArcObjects namespaces > GeoAnalyst > ESRI.ArcGIS.GeoAnalyst > Interfaces > IS > ISurfaceOp Interface > ISurfaceOp.CutFill Method
ArcGIS Developer Help

ISurfaceOp.CutFill Method

Calculates cut and fill areas.

[Visual Basic .NET]
Public Function CutFill ( _
    ByVal beforeGeoDataset As IGeoDataset, _
    ByVal afterGeoDataset As IGeoDataset, _
    [ByRef zFactor As Object] _
) As IGeoDataset
[C#]
public IGeoDataset CutFill (
    IGeoDataset beforeGeoDataset,
    IGeoDataset afterGeoDataset,
    ref object zFactor
);
[C++]
HRESULT CutFill(
  IGeoDataset* beforeGeoDataset,
  IGeoDataset* afterGeoDataset,
  Variant* zFactor
);
[C++]
Parameters
beforeGeoDataset [in]

beforeGeoDataset is a parameter of type IGeoDataset* afterGeoDataset [in]
afterGeoDataset is a parameter of type IGeoDataset* zFactor [in, optional]
zFactor is a parameter of type VARIANT*

Product Availability

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

Remarks

beforeGeoDataset

an input Raster, RasterDataset, RasterBand, or RasterDescriptor. Represents the before (past) state of the study area.

afterGeoDataset

an input Raster, RasterDataset, RasterBand, or RasterDescriptor. Represents the current or after state of the study area.

[zFactor]

the number of ground x, y Units in one surface ZUnit

The geoDataset ZUnits are multiplied by the specified zFactor to adjust the output Raster ZUnits to another unit of measure. If no zFactor is specified the value of the zFactor is 1. Higher z values will result in a more exaggerated relief (surface) and thus in a more extreme shading.

 

See Also

ISurfaceOp Interface