Share via


Presentation.HasTitleMaster Property

PowerPoint Developer Reference

MsoTrue if the specified presentation has a title master. Read-only.

Syntax

expression.HasTitleMaster

expression   A variable that represents a Presentation object.

Return Value
MsoTriState

Remarks

The value of the HasTitleMaster property can be one of these MsoTriState constants.

Constant Description
msoFalse The specified presentation does not have a title master.
msoTrue The specified presentation has a title master.

Example

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

Visual Basic for Applications
  With Application.ActivePresentation
    If Not .HasTitleMaster Then .AddTitleMaster
End With

See Also