Skip to content

Latest commit

 

History

History
55 lines (30 loc) · 1.04 KB

PowerPoint.Presentation.AddTitleMaster.md

File metadata and controls

55 lines (30 loc) · 1.04 KB
title keywords f1_keywords api_name ms.assetid ms.date ms.localizationpriority
Presentation.AddTitleMaster method (PowerPoint)
vbapp10.chm583006
vbapp10.chm583006
PowerPoint.Presentation.AddTitleMaster
b49baa5b-217a-ab6d-3cb3-ff74e533ef20
06/08/2017
medium

Presentation.AddTitleMaster method (PowerPoint)

Adds a title master to the specified presentation and returns a Master object that represents the title master.

Syntax

expression. AddTitleMaster

expression A variable that represents a Presentation object.

Return value

Master

Remarks

If the presentation already has a title master, an error occurs.

Example

This example adds a title master to the active presentation if it doesn't already have one.

With Application.ActivePresentation

    If Not .HasTitleMaster Then .AddTitleMaster

End With

See also

Presentation Object

[!includeSupport and feedback]