Presentation.DefaultShape property (PowerPoint)
Returns a Shape object that represents the default shape for the presentation. Read-only.
Syntax
expression. DefaultShape
expression A variable that represents a Presentation object.
Return value
Shape
Example
This example adds a shape to slide one in the active presentation, sets the default fill color to red for shapes in the presentation, and then adds another shape. This second shape will automatically have the new default fill color applied to it.
With Application.ActivePresentation
Set sld1Shapes = .Slides(1).Shapes
sld1Shapes.AddShape msoShape16pointStar, 20, 20, 100, 100
.DefaultShape.Fill.ForeColor.RGB = RGB(255, 0, 0)
sld1Shapes.AddShape msoShape16pointStar, 150, 20, 100, 100
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.