ArcObjects Library Reference (Carto)  

ITimeTableDefinition.TrackIDFieldName Property

Field that contains the rows that uniquely identifies the object whose time is being tracked.

[Visual Basic .NET]
Public Property TrackIDFieldName As String
[C#]
public string TrackIDFieldName {get; set;}
[C++]
HRESULT get_TrackIDFieldName(
  BSTR* FieldName
);
[C++]
HRESULT put_TrackIDFieldName(
  BSTR FieldName
);
[C++]

Parameters

FieldName [out, retval]   FieldName is a parameter of type BSTR FieldName [in]   FieldName is a parameter of type BSTR

Product Availability

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

Description

The TrackIDFieldName property contains the name of the field which can be used to group features by the object they represent.  For example, if a table contains observations of automobiles, and each feature in the table represents the location of one automobile at one point in time, there will be one field that uniquely identifies which automobile a feature is associated with (e.g. license plate number).  The TrackIDFieldName is the field that can be used to group the attributes by the real-world object that they represent (the "Track" that they belong to).

See Also

ITimeTableDefinition Interface