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


ITin.Fields Property (ArcObjects .NET 10.8 SDK)
ArcObjects Help for .NET developers > ArcObjects Help for .NET developers > ArcObjects namespaces > Geodatabase > ESRI.ArcGIS.GeoDatabase > Interfaces > IT > ITin Interface > ITin.Fields Property
ArcGIS Developer Help

ITin.Fields Property

The collection of attribute items of the TIN.

[Visual Basic .NET]
Public ReadOnly Property Fields As IFields
[C#]
public IFields Fields {get;}
[C++]
HRESULT get_Fields(
  IFields** Fields
);
[C++]
Parameters
Fields [out, retval]

Fields is a parameter of type IFields**

Product Availability

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

Description

Returns fields used to represent intrinsic attributes of the TIN.

While a TIN doesn't have attributes stored in a database table it does have intrinsic properties that can be treated like attributes. In this manner, TINs can 'pretend' to be like other data types that have attributes. An identify operation is an example where this behavior is useful. An identify tool asks the dataset what attributes (fields) it has and what the values are for a selected feature. For TINs it's based on selected location.

Fields are Elevation, Slope, Aspect, Node Tag Value, and Face Tag Value.

 

See Also

ITin Interface