TitleMaster Property
Applies To
Presentation object.
Description
Returns a Master object that represents the title master for the specified presentation. If the presentation doesn't have a title master, an error occurs. Read-only.
Remarks
Use the AddTitleMaster method to add a title master to a presentation.
See Also
HandoutMaster property, HasTitleMaster property, Master property, NotesMaster property, SlideMaster property.
Example
If the active presentation has a title master, this example sets the footer text for the title master.
With Application.ActivePresentation
If .HasTitleMaster Then
.TitleMaster.HeadersFooters.Footer.Text = "Introduction"
End If
End With