ArcGIS Pro 3.2 API Reference Guide
ArcGIS.Desktop.Mapping Namespace / FeatureLayer Class / TrackIdFieldName Property
Example

In This Topic
    TrackIdFieldName Property
    In This Topic
    Gets the name of the TrackId field.
    Syntax
    public string TrackIdFieldName {get;}
    Public ReadOnly Property TrackIdFieldName As String
    Example
    Get the Track Id Field
    if (streamLayer.IsTrackAware)
    {
      var trackField = streamLayer.TrackIdFieldName;
      //TODO use the field name
    }
    
    Requirements

    Target Platforms: Windows 11, Windows 10

    ArcGIS Pro version: 3 or higher.
    See Also