Join Curves call on c#

How i can call in c# the function Join Curves?
I have selected and created a selection range of shapes.

Parents
  • I will normally do something like this.

    I do the smallest gaps first then work up to the big ones, this gives better results for the type of shapes I am closing.

                corelApp.ActiveSelection.CustomCommand("ConvertTo", "JoinCurves", 0.01);
                corelApp.ActiveSelection.CustomCommand("ConvertTo", "JoinCurves", 0.1);
                corelApp.ActiveSelection.CustomCommand("ConvertTo", "JoinCurves", 1);
    

    Happy Coding, 

    -Shelby

Reply Children