Select to view content in your preferred language

How to implement the annotations' feature "Convert to Multiple Parts" in C#?

621
2
09-28-2018 07:38 AM
FabianOrtega
Occasional Contributor

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)

0 Kudos
2 Replies
RadekMandovec
Occasional Contributor

Did you find the solution for your question? I am trying to do something similar, but I also have not found any answer yet...

0 Kudos
RadekMandovec
Occasional Contributor

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);
0 Kudos