HasTitleMaster Property

Applies To

Presentation object.

Description

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

See Also

AddTitleMaster method, TitleMaster property.

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