API Documentation > CorelDRAW > 2025-v26 > Page > IVGPage
Page.SizeHeight property
Gets or sets the page height size
Syntax:
Property Get SizeHeight() As Double
Property Let SizeHeight(ByVal Value As Double)
Remarks:
The SizeHeight property returns or specifies the height of a page.
Examples:
The following VBA 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