CustomLayouts object (PowerPoint)

Represents a set of custom layouts associated with a presentation design.

Remarks

Use the CustomLayouts property of the slide Master object to return a CustomLayouts collection. Use CustomLayouts (index), where index is the custom layout index number, to return a single CustomLayout object.

Use the Add method to create a new custom layout and add it to the CustomLayouts collection. Use the Paste method to past slides from the Clipboard as a CustomLayout object into the CustomLayouts collection.

Use the CustomLayout property of a Slide or SlideRange object to return a custom layout for a slide or set of slides.

Example

The following example adds a custom layout to the slide master of the active presentation.

Sub AddCustomLayout()

    With ActivePresentation.SlideMaster

        .CustomLayouts.Add (1)

        .CustomLayouts(1).Name = "MyLayout"

    End With

End Sub

The following example displays the name of the custom layout for the first slide of the active presentation.

MsgBox ActivePresentation.Slides(1).CustomLayout.Name

Methods

Name
Add
Item
Paste

Properties

Name
Application
Count
Parent

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.