Skip to content

Latest commit

 

History

History
52 lines (29 loc) · 1023 Bytes

PowerPoint.Presentation.PageSetup.md

File metadata and controls

52 lines (29 loc) · 1023 Bytes
title keywords f1_keywords api_name ms.assetid ms.date ms.localizationpriority
Presentation.PageSetup property (PowerPoint)
vbapp10.chm583012
vbapp10.chm583012
PowerPoint.Presentation.PageSetup
81327801-ad21-967c-9682-54a847f79e29
06/08/2017
medium

Presentation.PageSetup property (PowerPoint)

Returns a PageSetup object whose properties control slide setup attributes for the specified presentation. Read-only.

Syntax

expression.PageSetup

expression A variable that represents a Presentation object.

Return value

PageSetup

Example

The following example sets the slide size and slide orientation for the presentation named "Pres1."

With Presentations("pres1").PageSetup

    .SlideSize = ppSlideSize35MM

    .SlideOrientation = msoOrientationHorizontal

End With

See also

Presentation Object

[!includeSupport and feedback]