Divide selected shapes current outline width by 2 using vba

How can I divide a shapes outline width in half (/2) using vba?

Parents
No Data
Reply
  • I have a code for increasing by point size. Can change "+ 1" to "/ 2".  Done here:

    Sub OutlineDiv2()
    Dim s As Shape
        For Each s In ActiveSelectionRange

                With s.Outline
                        .Width = .Width / 2
                End With
        Next s
    End Sub

Children
No Data