A family of Microsoft presentation graphics products that offer tools for creating presentations and adding graphic effects like multimedia objects and special effects with text.
You need to set each line property
With ActivePresentation.Slides(1).Shapes.Title.Line
.Visible = line_format.Visible
.ForeColor = line_format.ForeColor
.DashStyle = line_format.DashStyle
'--- other properties here
End With
If you want to copy all the formating from one shape to the other use:
ActivePresentation.Slides(1).Shapes(3).PickUp
ActivePresentation.Slides(1).Shapes.Title.Apply
Regards,
Shyam Pillai