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