Font.Shadow property (PowerPoint)
Determines whether the specified text has a shadow. Read/write.
Syntax
expression.Shadow
expression A variable that represents a Font object.
Remarks
The value of the Shadow property can be one of these MsoTriState constants.
Constant | Description |
---|---|
msoFalse | The specified text doesn't have a shadow. |
msoTriStateMixed | Some of the specified text has a shadow and some doesn't. |
msoTrue | The specified text has a shadow. |
Example
This example adds a shadow to the title text on slide one in the active presentation.
Application.ActivePresentation.Slides(1).Shapes.Title _
.TextFrame.TextRange.Font.Shadow = True
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.