object that represents the title master for the specified presentation. If the presentation doesn't have a title master, an error occurs.
expression.TitleMaster
expression Required. An expression that returns one of the objects in the Applies To list.
Remarks
Use the AddTitleMaster method to add a title master to a presentation.
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