PageSetup 物件 (Word)
代表版面設定描述。
PageSetup 物件包含所有頁面設定屬性 (Attribute) (左邊界、下邊界和頁面大小等) 作為屬性 (Property)。
使用 Worksheet 物件的 PageSetup 屬性傳回 PageSetup 物件。
下列範例會將方向設定為橫向模式,然後列印工作表。
With Worksheets("Sheet1")
.PageSetup.Orientation = xlLandscape
.PrintOut
End With
With 陳述式會使同時設定若干屬性變得更容易而迅速。 下列範例會設定第一張工作表的所有邊界。
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
- AlignMarginsHeaderFooter
- Application
- BlackAndWhite
- BottomMargin
- CenterFooter
- CenterFooterPicture
- CenterHeader
- CenterHeaderPicture
- CenterHorizontally
- CenterVertically
- Creator
- DifferentFirstPageHeaderFooter
- Draft
- EvenPage
- FirstPage
- FirstPageNumber
- FitToPagesTall
- FitToPagesWide
- FooterMargin
- HeaderMargin
- LeftFooter
- LeftFooterPicture
- LeftHeader
- LeftHeaderPicture
- LeftMargin
- OddAndEvenPagesHeaderFooter
- Order
- Orientation
- Pages
- PaperSize
- Parent
- PrintArea
- PrintComments
- PrintErrors
- PrintGridlines
- PrintHeadings
- PrintNotes
- PrintQuality
- PrintTitleColumns
- PrintTitleRows
- RightFooter
- RightFooterPicture
- RightHeader
- RightHeaderPicture
- RightMargin
- ScaleWithDocHeaderFooter
- TopMargin
- Zoom
有關於 Office VBA 或這份文件的問題或意見反應嗎? 如需取得支援服務並提供意見反應的相關指導,請參閱 Office VBA 支援與意見反應。