Borders.ApplyPageBordersToAllSections 方法 (Word)
將指定的頁面框線格式套用至文件中的所有區段。
語法
expression. ApplyPageBordersToAllSections
需要 expression。 代表 'Borders' 集合的變數。
範例
這則範例會將單行頁面框線套用至使用中文件內的所有區段。
Dim borderLoop As Border
With ActiveDocument.Sections(1)
For Each borderLoop In .Borders
With borderLoop
.LineStyle = wdLineStyleSingle
.LineWidth = wdLineWidth050pt
End With
Next borderLoop
.Borders.ApplyPageBordersToAllSections
End With
另請參閱
支援和意見反應
有關於 Office VBA 或這份文件的問題或意見反應嗎? 如需取得支援服務並提供意見反應的相關指導,請參閱 Office VBA 支援與意見反應。