Master Object

Description

Represents a slide master, title master, handout master, or notes master.

Using the Master Object

To return a Master object, use the Master property of the Slide object or SlideRange collection, or use the HandoutMaster, NotesMaster, SlideMaster, or TitleMaster property of the Presentation object. The following example sets the background fill for the slide master for the active presentation.

ActivePresentation.SlideMaster.Background.Fill.PresetGradient _
    msoGradientHorizontal, 1, msoGradientBrass
To add a title master to a presentation and return a Master object that represents the new title master, use the AddTitleMaster method. The following example adds a title master to the active presentation and places the title placeholder 10 points from the top of the master.

ActivePresentation.AddTitleMaster.Shapes.Title.Top = 10
Properties

Application property, Background property, ColorScheme property, HeadersFooters property, Height property, Hyperlinks property, Name property, Parent property, Shapes property, TextStyles property, Width property.

Methods

Delete method.