ArcGIS Pro 3.7 API Reference Guide
ArcGIS.Desktop.Mapping Namespace / TimeRange Class / End Property
Example

In This Topic
    End Property (TimeRange)
    In This Topic
    Gets or sets the end time for the range.
    Syntax
    Public Property End As Nullable(Of Date)
    public Nullable<DateTime> End {get; set;}
    Example
    Disable time in the map.
    {
      MapView.Active.Time.Start = null;
      MapView.Active.Time.End = null;
    }
    Requirements

    Target Platforms: Windows 11 Home, Pro, Enterprise (64 bit)

    ArcGIS Pro version: 3.0 or higher.
    See Also