ArcObjects Library Reference (GeoDatabaseExtensions)  

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(
  BSTR pFieldName
);
[C++]

Parameters

pFieldName [out, retval]   pFieldName is a parameter of type BSTR pFieldName [in]   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