ArcObjects Library Reference (Geometry)  

IFunctionalSurface3.InterpolateShape Method

Interpolates z values for a defined geometric shape.

[Visual Basic .NET]
Public Sub InterpolateShape ( _
    ByVal pShape As IGeometry, _
    ByRef ppOutShape As IGeometry, _
    [ByRef pStepSize As Object] _
)
[C#]
public void InterpolateShape (
    IGeometry pShape,
    ref IGeometry ppOutShape,
    ref object pStepSize
);
[C#]

Optional Values

pStepSize   To indicate that this parameter is undefined, first define a variable object Missing = Type.Missing; then pass this in as ref Missing.
[C++]
HRESULT InterpolateShape(
  IGeometry* pShape,
  IGeometry** ppOutShape,
  VARIANT* pStepSize
);
[C++]

Parameters

pShape [in]

  pShape is a parameter of type IGeometry

ppOutShape [out]

  ppOutShape is a parameter of type IGeometry

pStepSize [optional]   pStepSize is a parameter of type VARIANT

  To indicate this parameter is undefined pass a reference to a VARIANT with type VT_ERROR and scode value of DISP_E_PARAMNOTFOUND.

Product Availability

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

See Also

IFunctionalSurface3 Interface