Shaping->Boundary from VBA

Is there an equivalent to Shaping->Boundary but within a VBA app?  the Shape class contains methods Weld, Combine, Trim, etc.. but no Boundary :(

TIA

  • Yep, you can create a Boundary via VBA like this:

    Sub CreateBoundary()
    Dim s1 As Shape
    Set s1 = ActiveSelection.CustomCommand("Boundary", "CreateBoundary")
    End Sub

    Happy coding,

    -Shelby