Skip to content

Files

Latest commit

author
Docs Allowlist Management
Jan 12, 2024
5c5cb03 · Jan 12, 2024

History

History
68 lines (33 loc) · 1.03 KB

PowerPoint.Presentation.Designs.md

File metadata and controls

68 lines (33 loc) · 1.03 KB
title keywords f1_keywords api_name ms.assetid ms.date ms.localizationpriority
Presentation.Designs property (PowerPoint)
vbapp10.chm583063
vbapp10.chm583063
PowerPoint.Presentation.Designs
5ad47ac9-aaab-3971-1102-fa48e8bcef8b
06/08/2017
medium

Presentation.Designs property (PowerPoint)

Returns a Designs object that represents a collection of designs.

Syntax

expression. Designs

expression A variable that represents a Presentation object.

Return value

Designs

Example

The following example displays a message for each design in the active presentation.

Sub AddDesignMaster()

    Dim desName As Design



    With ActivePresentation



        For Each desName In .Designs

            MsgBox "The design name is " & .Designs.Item(desName.Index).Name

        Next



    End With



End Sub

See also

Presentation Object

[!includeSupport and feedback]