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


ITinSurface3.InterpolateZ Method (ArcObjects .NET 10.8 SDK)
ArcObjects Help for .NET developers > ArcObjects Help for .NET developers > ArcObjects namespaces > Geodatabase > ESRI.ArcGIS.GeoDatabase > Interfaces > IT > ITinSurface3 Interface > ITinSurface3.InterpolateZ Method
ArcGIS Developer Help

ITinSurface3.InterpolateZ Method

Interpolate the z-coordinate of the specified location.

[Visual Basic .NET]
Public Function InterpolateZ ( _
    ByVal X As Double, _
    ByVal Y As Double _
) As Double
[C#]
public double InterpolateZ (
    double X,
    double Y
);
[C++]
HRESULT InterpolateZ(
  double X,
  double Y
);
[C++]
Parameters
X [in]

X is a parameter of type double Y [in]
Y is a parameter of type double

Product Availability

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

Description

Interpolates a height for the given XY. The method of interpolation used is defined by the ITinSurface3.InterpolationMethod property.

See Also

ITinSurface3 Interface