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


IDynamicSurface2.InterpolateFeatureCursor Method (ArcObjects .NET 10.8 SDK)
ArcObjects Help for .NET developers > ArcObjects Help for .NET developers > ArcObjects namespaces > GeodatabaseExtensions > ESRI.ArcGIS.GeoDatabaseExtensions > Interfaces > ID > IDynamicSurface2 Interface > IDynamicSurface2.InterpolateFeatureCursor Method
ArcGIS Developer Help

IDynamicSurface2.InterpolateFeatureCursor Method

Interpolates z values for features.

[Visual Basic .NET]
Public Sub InterpolateFeatureCursor ( _
    ByVal pCursor As IFeatureCursor, _
    ByVal Resolution As Double, _
    ByVal Type As esriSurfaceInterpolationType, _
    ByVal pOutFeatureClass As IFeatureClass, _
    ByVal pTrackCancel As ITrackCancel, _
    [ByRef pStepSize As Object] _
)
[C#]
public void InterpolateFeatureCursor (
    IFeatureCursor pCursor,
    double Resolution,
    esriSurfaceInterpolationType Type,
    IFeatureClass pOutFeatureClass,
    ITrackCancel pTrackCancel,
    ref object pStepSize
);
[C++]
HRESULT InterpolateFeatureCursor(
  IFeatureCursor* pCursor,
  double Resolution,
  esriSurfaceInterpolationType Type,
  IFeatureClass* pOutFeatureClass,
  ITrackCancel* pTrackCancel,
  Variant* pStepSize
);
[C++]
Parameters
pCursor [in]

pCursor is a parameter of type IFeatureCursor* Resolution [in]
Resolution is a parameter of type double Type [in]
Type is a parameter of type esriSurfaceInterpolationType pOutFeatureClass [in]
pOutFeatureClass is a parameter of type IFeatureClass* pTrackCancel [in]
pTrackCancel is a parameter of type ITrackCancel* pStepSize [in, optional]
pStepSize is a parameter of type VARIANT*

Product Availability

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

Description

If stepsize is omitted, and the interpolation option is set to natural neighbors, input polylines and polygon boundaries will be densified where they intersect terrain triangle edges.

See Also

IDynamicSurface2 Interface