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.
This is the basic code to replicate Steve's answer
Sub textDupe()
Dim osld As Slide
Dim oshp As Shape
Set osld = ActiveWindow.Selection.SlideRange(1)
Set oshp = osld.Shapes(1)
With oshp.Duplicate
.Top = oshp.Top + oshp.Height
.Left = oshp.Left
End With
End Sub