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 

See also

Support and feedback

Have questions or feedback about Office VBA or this documentation? Please see Office VBA support and feedback for guidance about the ways you can receive support and provide feedback.