View Single Post
 
Old 08-30-2014, 02:19 PM
excelledsoftware excelledsoftware is offline Windows 7 64bit Office 2003
IT Specialist
 
Join Date: Jan 2012
Location: Utah
Posts: 455
excelledsoftware will become famous soon enough
Default

By the way this is what that same code would like without all of the comments.
It does the very same thing
Code:
Sub GetTheLineColors()

  Dim shp As Shape

    For Each shp In ActivePresentation.Slides(1).Shapes
      Debug.Print shp.Name & ";" & shp.Line.ForeColor.RGB
    Next shp

End Sub
Reply With Quote