ReflectionFormat Object (Office)
Represents the reflection effect in Office graphics.
Example
This example sets the reflection formatting for the text for the second shape on the second slide in a PowerPoint presentation:
With ActivePresentation.Slides(1).Shapes(2)
With .TextFrame2.TextRange.Font
.Size = 32
.Name = "Palatino"
.Reflection.Type = msoReflectionType6
End With
End With