Would like to subscribe to events for the Edit tab Discard and Save changes buttons in ArcPro.
EditCompletedEvent.Subscribe(args =>{OnEditCompleted(args);
return Task.FromResult(0);});private void OnEditCompleted(EditCompletedEventArgs args){if (args.CompletedType == EditCompletedType.Save){}else if (args.CompletedType == EditCompletedType.Discard){}}
Signed in members can post, follow updates, and more. New here? Register a free account.
Find useful guides, FAQs, and documents to help you navigate and make the most of Esri Community.