ArcObjects Library Reference (GeoDatabaseExtensions)  

ITerrainDataSource.QueryResolutionBounds Method

Returns the lower and upper resolution bounds in which the line/area data source participates in the triangulation.

[Visual Basic .NET]
Public Sub QueryResolutionBounds ( _
    ByRef pLowerBound As Double, _
    ByRef pUpperBound As Double _
)
[C#]
public void QueryResolutionBounds (
    ref double pLowerBound,
    ref double pUpperBound
);
[C++]
HRESULT QueryResolutionBounds(
  double* pLowerBound,
  double* pUpperBound
);
[C++]

Parameters

pLowerBound [out]   pLowerBound is a parameter of type double pUpperBound [out]   pUpperBound is a parameter of type double

Product Availability

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

Description

The resolution bounds are used by feature classes added as breakline and polygon surface feature types. The bounds represent the pyramid levels in which the features are enforced. The lower bound is inclusive, the upper exclusive. For example, a data source with a lower bound of 0.0 and an upper bound of 5.1 will be enforced by the terrain for pyramid layers whose resolution is >= 0.0 and < 5.1. 

See Also

ITerrainDataSource Interface