Hi,
I need to implement the ArcGIS Pro annotations' feature "Convert to Multiple Parts" (see Image #2) in my code C#, but I didn't find how to do it using the ArcGIS Pro SDK for .NET, I don't even know if it's possible. So, does anybody know if it can be achievable through the Pro SDK? And if it's the case, how?
Thanks,
Convert annotation to multiple parts—ArcGIS Pro | ArcGIS Desktop
Image (1)
Image (2)
Image (3)
Did you find the solution for your question? I am trying to do something similar, but I also have not found any answer yet...
I found only one possibility how to do it- call esri command:
IPlugInWrapper wrapper = FrameworkApplication.GetPlugInWrapper("esri_editing_annotationConvertToMultiPartButton");
var command = wrapper as ICommand;
if ((command != null) && command.CanExecute(null))
command.Execute(null);