title | keywords | f1_keywords | api_name | ms.assetid | ms.date | ms.localizationpriority | ||
---|---|---|---|---|---|---|---|---|
Presentation.HasTitleMaster property (PowerPoint) |
vbapp10.chm583005 |
|
|
93b5932c-c03f-451a-c7f9-30683c01bcfa |
06/08/2017 |
medium |
MsoTrue if the specified presentation has a title master. Read-only.
expression. HasTitleMaster
expression A variable that represents a Presentation object.
MsoTriState
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. |
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
[!includeSupport and feedback]