ArcGIS Pro 3.3 API Reference Guide
ArcGIS.Desktop.Mapping Namespace / FeatureLayer Class / SetPreviousObservationsCount Method
The number of maximum previous observations to display for each track.
Example

In This Topic
    SetPreviousObservationsCount Method
    In This Topic
    Specifies the maximum number of previous observations to be displayed for each track.
    Syntax
    public void SetPreviousObservationsCount( 
       int previousObservationsCount
    )
    Public Sub SetPreviousObservationsCount( _
       ByVal previousObservationsCount As Integer _
    ) 

    Parameters

    previousObservationsCount
    The number of maximum previous observations to display for each track.
    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
    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