ArcGIS Pro 3.3 API Reference Guide
ArcGIS.Desktop.Mapping Namespace / FeatureLayer Class / SetTrackLinesVisibility Method
Indicates whether Track Lines should be displayed.
Example

In This Topic
    SetTrackLinesVisibility Method
    In This Topic
    Specifies whether to display Track Lines or not.
    Syntax
    public void SetTrackLinesVisibility( 
       bool trackLinesVisible
    )
    Public Sub SetTrackLinesVisibility( _
       ByVal trackLinesVisible As Boolean _
    ) 

    Parameters

    trackLinesVisible
    Indicates whether Track Lines should be displayed.
    Exceptions
    ExceptionDescription
    This method or property must be called within the lambda passed to QueuedTask.Run.
    This feature layer does not support tracks.
    Remarks
    Non-track aware layers will throw a System.InvalidOperationException
    Example
    Check Previous Observation and Track Line Visibility
    //The layer must be track aware and spatial for these settings
    //to have an effect
    if (streamLayer.TrackType != TrackType.Spatial)
      return;
    //Must be on QueuedTask
    if (!streamLayer.AreTrackLinesVisible)
      streamLayer.SetTrackLinesVisibility(true);
    if (!streamLayer.ArePreviousObservationsVisible)
      streamLayer.SetPreviousObservationsVisibility(true);
    
    Make Track Lines and Previous Observations Visible
    //The layer must be track aware and spatial for these settings
    //to have an effect
    if (streamLayer.TrackType != TrackType.Spatial)
      return;
    
    //Must be on QueuedTask
    
    //Note: Setting PreviousObservationsCount larger than the 
    //"SetExpirationMaxCount()" has no effect
    streamLayer.SetPreviousObservationsCount(6);
    if (!streamLayer.AreTrackLinesVisible)
      streamLayer.SetTrackLinesVisibility(true);
    if (!streamLayer.ArePreviousObservationsVisible)
      streamLayer.SetPreviousObservationsVisibility(true);
    Requirements

    Target Platforms: Windows 11, Windows 10

    ArcGIS Pro version: 3 or higher.
    See Also