public sealed class SnapshotChangedEventArgs : System.EventArgs
Public NotInheritable Class SnapshotChangedEventArgs Inherits System.EventArgs
public sealed class SnapshotChangedEventArgs : System.EventArgs
Public NotInheritable Class SnapshotChangedEventArgs Inherits System.EventArgs
private void SubscribeToSnapshotEvents() { SnapshotChangedEvent.Subscribe(OnSnapshotChanged); } private void OnSnapshotChanged(SnapshotChangedEventArgs args) { if (args == null) return; var snapshot = args.Snapshot as NMEASnapshot; if (snapshot == null) return; QueuedTask.Run(() => { var pt = snapshot.GetPositionAsMapPoint(); if (pt?.IsEmpty ?? true) return; // access properties var alt = snapshot.Altitude; var dt = snapshot.DateTime; var vdop = snapshot.VDOP; var hdop = snapshot.HDOP; // etc //TODO: use the snapshot }); }
System.Object
System.EventArgs
ArcGIS.Desktop.Core.DeviceLocation.Events.SnapshotChangedEventArgs
Target Platforms: Windows 11, Windows 10