TitleMaster 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