PageWidth Property
Applies To
PageSetup object.
Description
Returns or sets the width of the page, in points. Read/write Single.
Remarks
Setting the PageWidth property changes the PaperSize property to wdPaperCustom.
Use the PaperSize property to set the page height and page width to those of a predefined paper size, such as Letter or A4.
See Also
PageHeight property, PaperSize property.
Example
This example returns the page width for Document1. The PointsToInches method is used to convert points to inches.
Set doc1set = Documents("Document1").PageSetup
Msgbox "The page width is " & _
PointsToInches(doc1set.PageWidth) & " inches."