Design object (PowerPoint)

Represents an individual slide design template. The Design object is a member of the Designs and SlideRange collections and the Master and Slide objects.

Remarks

Use the Design property of the Master, Slide, or SlideRange objects to access a Design object, for example:

  • ActivePresentation.SlideMaster.Design

  • ActivePresentation.Slides(1).Design

  • ActivePresentation.Slides.Range.Design

Use the Add, Item, Clone, or Loadmethods of the Designs collection to add, refer to, clone, or load a Design object, respectively. For example, to add a design template, use ActivePresentation.Designs.Add designName:="MyDesign"

Example

The Design object's AddTitleMastermethod and HasTitleMasterproperty can be used to add and / or query the status of a title slide master. For example:

Sub AddQueryTitleMaster(dsn As Design)

    dsn.AddTitleMaster

    MsgBox dsn.HasTitleMaster

End Sub

See also

PowerPoint Object Model Reference

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.