Share via


TitleMaster Property

TitleMaster Property
This content is no longer actively maintained. It is provided as is, for anyone who may still be using these technologies, with no warranties or claims of accuracy with regard to the most recent product version or service release.

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.

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