title | keywords | f1_keywords | api_name | ms.assetid | ms.date | ms.localizationpriority | ||
---|---|---|---|---|---|---|---|---|
Presentation.TitleMaster property (PowerPoint) |
vbapp10.chm583004 |
|
|
d5a84b2a-fff0-dcb5-e744-466428a586b5 |
06/08/2017 |
medium |
Returns a Master object that represents the title master for the specified presentation.
expression. TitleMaster
expression A variable that represents a Presentation object.
Master
If the presentation doesn't have a title master, an error occurs.
Use the AddTitleMaster method to add a title master to a presentation.
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
[!includeSupport and feedback]