Skip to content

Latest commit

 

History

History
61 lines (33 loc) · 1.15 KB

PowerPoint.Presentation.TitleMaster.md

File metadata and controls

61 lines (33 loc) · 1.15 KB
title keywords f1_keywords api_name ms.assetid ms.date ms.localizationpriority
Presentation.TitleMaster property (PowerPoint)
vbapp10.chm583004
vbapp10.chm583004
PowerPoint.Presentation.TitleMaster
d5a84b2a-fff0-dcb5-e744-466428a586b5
06/08/2017
medium

Presentation.TitleMaster property (PowerPoint)

Returns a Master object that represents the title master for the specified presentation.

Syntax

expression. TitleMaster

expression A variable that represents a Presentation object.

Return value

Master

Remarks

If the presentation doesn't have a title master, an error occurs.

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

See also

Presentation Object

[!includeSupport and feedback]