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


ITerrainDataSource.SetResolutionBounds Method (ArcObjects .NET 10.8 SDK)
ArcObjects Help for .NET developers > ArcObjects Help for .NET developers > ArcObjects namespaces > GeodatabaseExtensions > ESRI.ArcGIS.GeoDatabaseExtensions > Interfaces > IT > ITerrainDataSource Interface > ITerrainDataSource.SetResolutionBounds Method
ArcGIS Developer Help

ITerrainDataSource.SetResolutionBounds Method

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

[Visual Basic .NET]
Public Sub SetResolutionBounds ( _
    ByVal lowerBound As Double, _
    ByVal upperBound As Double _
)
[C#]
public void SetResolutionBounds (
    double lowerBound,
    double upperBound
);
[C++]
HRESULT SetResolutionBounds(
  double lowerBound,
  double upperBound
);
[C++]
Parameters
lowerBound [in]

lowerBound is a parameter of type double upperBound [in]
upperBound 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