i would like to convert all line segments into curve segments from the active selection at once .... any script

i would like to convert all line segments into curve segments from the active selection at once .... any script 

Parents
No Data
Reply
  • Sub ConvertAllToCurve

    Dim sr As ShapeRange, s As Shape
    Set sr = ActiveSelectionRange
    ActiveDocument.BeginCommandGroup "Convert"
    Optimization = True
    For Each s In sr
    s.ConvertToCurves
    Next s
    Optimization = False: Refresh
    ActiveDocument.EndCommandGroup

    End Sub

Children
No Data