Share via


Designs Collection

Designs Collection
This content is no longer actively maintained. It is provided as is, for anyone who may still be using these technologies, with no warranties or claims of accuracy with regard to the most recent product version or service release.

Presentation
Aa201133.parchild(en-us,office.10).gifDesigns
Aa201133.space(en-us,office.10).gifAa201133.parchild(en-us,office.10).gifDesign

Represents a collection of slide design templates.

Using the Designs collection

Use the Designs property of the Presentation object to reference a design template.

To add or clone an individual design template, use the Designs collection's Add or Clone methods, respectively. To refer to an individual design template, use the Item method.

To load a design template, use the Load method.

The following example adds a new design template to the Designs collection and confirms it was added correctly.

  Sub AddDesignMaster()
    With ActivePresentation.Designs
        .Add designName:="MyDesignName"
        MsgBox .Item("MyDesignName").Name
    End With
End Sub