Skip to content

Files

Latest commit

 

History

History
52 lines (29 loc) · 1.21 KB

PowerPoint.Presentation.Container.md

File metadata and controls

52 lines (29 loc) · 1.21 KB
title keywords f1_keywords api_name ms.assetid ms.date ms.localizationpriority
Presentation.Container property (PowerPoint)
vbapp10.chm583041
vbapp10.chm583041
PowerPoint.Presentation.Container
cc0108b7-ce95-3a1b-a400-c49700a2362c
06/08/2017
medium

Presentation.Container property (PowerPoint)

Returns the object that contains the specified embedded presentation. Read-only.

Syntax

expression. Container

expression A variable that represents a Presentation object.

Return value

Object

Remarks

If the container doesn't support OLE Automation, or if the specified presentation isn't embedded in a Microsoft Binder file, this property fails.

Example

This example hides the second section of the Microsoft Binder file that contains the embedded active presentation. The Container property of the presentation returns a Section object, and the Parent property of the Section object returns a Binder object.

Application.ActivePresentation.Container.Parent.Sections(2) _
    .Visible = False

See also

Presentation Object

[!includeSupport and feedback]