SlideHeight Property

Applies To

PageSetup object.

Description

Returns or sets the slide height, in points. Read/write Single.

See Also

SlideOrientation property, SlideSize property, SlideWidth property.

Example

This example sets the slide height to 8.5 inches and the slide width to 11 inches for the active presentation.

With Application.ActivePresentation.PageSetup
    .SlideWidth = 11 * 72
    .SlideHeight = 8.5 * 72
End With