ArcGIS Pro 3.2 API Reference Guide
ArcGIS.Desktop.Core.DeviceLocation.Events Namespace / DeviceLocationPropertiesUpdatedEventArgs Class
Members Example

In This Topic
    DeviceLocationPropertiesUpdatedEventArgs Class
    In This Topic
    Object Model
    DeviceLocationPropertiesUpdatedEventArgs ClassDeviceLocationProperties Class
    Syntax
    public sealed class DeviceLocationPropertiesUpdatedEventArgs : System.EventArgs 
    Public NotInheritable Class DeviceLocationPropertiesUpdatedEventArgs 
       Inherits System.EventArgs
    Example
    Subscribe to DeviceLocationPropertiesUpdated event
    private void SubscribeToPropertiesEvents()
    {
      DeviceLocationPropertiesUpdatedEvent.Subscribe(OnDeviceLocationPropertiesUpdated);
    }
    private void OnDeviceLocationPropertiesUpdated(DeviceLocationPropertiesUpdatedEventArgs args)
    {
      if (args == null)
        return;
    
      var properties = args.DeviceLocationProperties;
    
      //  TODO - something with the updated properties
    }
    Inheritance Hierarchy

    System.Object
       System.EventArgs
          ArcGIS.Desktop.Core.DeviceLocation.Events.DeviceLocationPropertiesUpdatedEventArgs

    Requirements

    Target Platforms: Windows 11, Windows 10

    ArcGIS Pro version: 3 or higher.
    See Also