Previous Document Next Document
Page.SizeHeight

Property SizeHeight As Double

Member of Page

The SizeHeight property returns or sets the height 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.