Previous Document Next Document
Page.SizeWidth

Property SizeWidth As Double

Member of Page

The SizeWidth property returns or sets the width of a page.

The following code example sets all document pages to 5" ?11":

Sub Test() 
 Dim p As Page 
 For Each p In ActiveDocument.Pages 
  p.SizeWidth = 5 
  p.SizeHeight = 11 
 Next p 
End Sub 

Previous Document Next Document Back to Top

Copyright 2007 Corel Corporation. All rights reserved.