HasTitleMaster Property

Microsoft PowerPoint Visual Basic

MsoTriState can be one of these MsoTriState constants.
msoCTrue
msoFalse
msoTriStateMixed
msoTriStateToggle
msoTrue The specified presentation has a title master.

expression.HasTitleMaster

expression    Required. An expression that returns one of the objects in the Applies To list.

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