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


ITerrainFieldStatistics.UniqueValueType Property (ArcObjects .NET 10.8 SDK)
ArcObjects Help for .NET developers > ArcObjects Help for .NET developers > ArcObjects namespaces > GeodatabaseExtensions > ESRI.ArcGIS.GeoDatabaseExtensions > Interfaces > IT > ITerrainFieldStatistics Interface > ITerrainFieldStatistics.UniqueValueType Property
ArcGIS Developer Help

ITerrainFieldStatistics.UniqueValueType Property

Returns esriTerrainLong for integer-type data (except for unsigned long), and esriTerrainDouble for unsigned long and floating point data.

[Visual Basic .NET]
Public ReadOnly Property UniqueValueType As esriTerrainBlobDataType
[C#]
public esriTerrainBlobDataType UniqueValueType {get;}
[C++]
HRESULT get_UniqueValueType(
  esriTerrainBlobDataType* pType
);
[C++]
Parameters
pType [out, retval]

pType is a parameter of type esriTerrainBlobDataType*

Product Availability

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

Description

Used to indicate whether unique values for the field should be retrieved using ITerrainFieldStatistics.GetUniqueValuesAsLong or ITerrainFieldStatistics.GetUniqueValuesAsDouble. When a value of esriTerrainLong is returned call GetUniqueValuesAsLong. When a value of esriTerrainDouble is returned call GetUniqueValuesAsDouble. These two types can be be used to capture/represent other types if they happen to be stored as chars, shorts, or floats, etc.

See Also

ITerrainFieldStatistics Interface