ArcGIS Pro 3.7 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 NotInheritable Class DeviceLocationPropertiesUpdatedEventArgs 
       Inherits System.EventArgs
    public sealed class DeviceLocationPropertiesUpdatedEventArgs : System.EventArgs 
    Example
    Subscribe to DeviceLocationPropertiesUpdated event
    {
        DeviceLocationPropertiesUpdatedEvent.Subscribe(OnDeviceLocationPropertiesUpdated);
        // Event handler for DeviceLocationPropertiesUpdated event.
        static 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 Home, Pro, Enterprise (64 bit)

    ArcGIS Pro version: 3.0 or higher.
    See Also