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


ITerrainDataSource.HeightField Property (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.HeightField Property
ArcGIS Developer Help

ITerrainDataSource.HeightField Property

The database column providing heights for the features.

[Visual Basic .NET]
Public Property HeightField As String
[C#]
public string HeightField {get; set;}
[C++]
HRESULT get_HeightField(
  BSTR pFieldName
);
[C++]
HRESULT put_HeightField(
  System.String* pFieldName
);
[C++]
Parameters
pFieldName [in]

pFieldName is a parameter of type BSTR pFieldName [out, retval]
pFieldName is a parameter of type BSTR*

Product Availability

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

Description

The HeightField is the name of the database column providing heights for the features. It can be the shape field name if the z values are to come from the feature geometry. It can be a numeric field in the case where z values are to come from an attribute. This parameter can also be left unset, or set to an empty string, if the features are to be incorporated into the terrain without z values (e.g. z-less clip polygon boundary).

 

See Also

ITerrainDataSource Interface