PageSetup.SlideSize Property (PowerPoint)
Returns or sets the slide size for the specified presentation. Read/write.
Syntax
expression .SlideSize
expression A variable that represents a PageSetup object.
Return Value
PpSlideSizeType
Remarks
The value of the SlideSize property can be one of these PpSlideSizeType constants.
ppSlideSize35MM |
ppSlideSizeA3Paper |
ppSlideSizeA4Paper |
ppSlideSizeB4ISOPaper |
ppSlideSizeB4JISPaper |
ppSlideSizeB5ISOPaper |
ppSlideSizeB5JISPaper |
ppSlideSizeBanner |
ppSlideSizeCustom |
ppSlideSizeHagakiCard |
ppSlideSizeLedgerPaper |
ppSlideSizeLetterPaper |
ppSlideSizeOnScreen |
ppSlideSizeOverhead |
Example
This example sets the slide size to overhead for the active presentation.
Application.ActivePresentation.PageSetup _
.SlideSize = ppSlideSizeOverhead