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


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

ITinTriangle.QueryElevationBand Method

The polygon based on the specified triangle and input bounds.

[Visual Basic .NET]
Public Sub QueryElevationBand ( _
    ByVal zLowerBound As Double, _
    ByVal zUpperBound As Double, _
    ByRef pCount As Integer, _
    ByRef pRegion As WKSPointZ _
)
[C#]
public void QueryElevationBand (
    double zLowerBound,
    double zUpperBound,
    ref int pCount,
    ref WKSPointZ pRegion
);
[C++]
HRESULT QueryElevationBand(
  double zLowerBound,
  double zUpperBound,
  System.Int32* pCount,
  WKSPointZ* pRegion
);
[C++]
Parameters
zLowerBound [in]

zLowerBound is a parameter of type double zUpperBound [in]
zUpperBound is a parameter of type double pCount [out]
pCount is a parameter of type long* pRegion [out]
pRegion is a parameter of type WKSPointZ*

Product Availability

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

Description

Returns a 3-D polygonal definition for the area of the triangle that falls within the specified ZMin and ZMax. The returned count indicates how many vertices define the area. The vertices are written to the passed WKSPointZ array.

See Also

ITinTriangle Interface