Word (的 Borders.AlwaysInFront 屬性)
True 是表示 如果頁面框線會顯示在文件文字前方。 可讀寫的 Boolean。
語法
expression。 AlwaysInFront
表達 代表 'Borders' 物件的變數。
範例
本範例會在使用中文件第一個區段文字前面新增圖形頁面框線。
Dim borderLoop as Border
With ActiveDocument.Sections(1)
.Borders.AlwaysInFront = True
For Each borderLoop In .Borders
With borderLoop
.ArtStyle = wdArtPeople
.ArtWidth = 15
End With
Next borderLoop
End With
另請參閱
支援和意見反應
有關於 Office VBA 或這份文件的問題或意見反應嗎? 如需取得支援服務並提供意見反應的相關指導,請參閱 Office VBA 支援與意見反應。