Skip to content

Latest commit

 

History

History
107 lines (87 loc) · 3.85 KB

Excel.PageSetup.md

File metadata and controls

107 lines (87 loc) · 3.85 KB
title keywords f1_keywords api_name ms.assetid ms.date ms.localizationpriority
PageSetup object (Excel)
vbaxl10.chm472072
vbaxl10.chm472072
Excel.PageSetup
2fd22df9-5987-f723-04a9-9a3f2e84ac81
03/30/2019
high

PageSetup object (Excel)

Represents the page setup description.

Remarks

The PageSetup object contains all page setup attributes (left margin, bottom margin, paper size, and so on) as properties.

Example

Use the PageSetup property of the Worksheet object to return a PageSetup object.

The following example sets the orientation to landscape mode and then prints the worksheet.

With Worksheets("Sheet1") 
 .PageSetup.Orientation = xlLandscape 
 .PrintOut 
End With

The With statement makes it easier and faster to set several properties at the same time. The following example sets all the margins for worksheet one.

With Worksheets(1).PageSetup 
 .LeftMargin = Application.InchesToPoints(0.5) 
 .RightMargin = Application.InchesToPoints(0.75) 
 .TopMargin = Application.InchesToPoints(1.5) 
 .BottomMargin = Application.InchesToPoints(1) 
 .HeaderMargin = Application.InchesToPoints(0.5) 
 .FooterMargin = Application.InchesToPoints(0.5) 
End With

Properties

See also

[!includeSupport and feedback]