ArcObjects Library Reference (GeoDatabaseExtensions)  

ITerrainEdit3.ChangeUsageInOverview Method

Change the ApplyToOverviewTerrain property of the specified data source.

[Visual Basic .NET]
Public Sub ChangeUsageInOverview ( _
    ByVal index As Integer, _
    ByVal bApply As Boolean _
)
[C#]
public void ChangeUsageInOverview (
    int index,
    bool bApply
);
[C++]
HRESULT ChangeUsageInOverview(
  long index,
  VARIANT_BOOL bApply
);
[C++]

Parameters

index [in]   index is a parameter of type long bApply [in]   bApply is a parameter of type VARIANT_BOOL

Product Availability

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

Description

Used to add or remove a feature class from participation in the terrain's overview.

index indicates which feature class to modify. The index must refer to a polyline or polygon based feature class as these are the types of features which have an option of being in the overview. Points and multipoints always participate in the overview.

Set bApply to TRUE to have the feature class participate in the overview and FALSE if not.

See Also

ITerrainEdit3 Interface