ReflectionFormat Object

Office Developer Reference

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:

Visual Basic for Applications
  With ActivePresentation.Slides(1).Shapes(2)
    With .TextFrame2.TextRange.Font
        .Size = 32
        .Name = "Palatino"
        .Reflection.Type = msoReflectionType6
    End With
End With

See Also