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


ITinSurface3.InterpolateZ Method (ArcObjects .NET 10.5 SDK)
ArcObjects Library Reference (GeoDatabase)  

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,
  double* pZ
);
[C++]

Parameters X [in] X is a parameter of type double Y [in] Y is a parameter of type double pZ [out, retval] pZ 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