Word) (Borders.OutsideColorIndex 屬性
會傳回或設定外框線的色彩。 讀取/寫入 WdColorIndex 。
語法
expression. OutsideColorIndex
需要 expression。 代表 'Borders' 集合的變數。
註解
如果 OutsideLineStyle 屬性設定為 wdLineStyleNone 或 False ,設定這個屬性就沒有作用。
範例
這個範例會在使用中文件之第一個表格的列及欄之間新增框線,然後設定內外框線的色彩。
If ActiveDocument.Tables.Count >= 1 Then
Set myTable = ActiveDocument.Tables(1)
With myTable.Borders
.InsideLineStyle = True
.InsideColorIndex = wdBrightGreen
.OutsideColorIndex = wdPink
End With
End If
這個範例會在使用中文件裡第一個段落四周新增紅色 0.75 點的雙框線。
With ActiveDocument.Paragraphs(1).Borders
.OutsideLineStyle = wdLineStyleDouble
.OutsideLineWidth = wdLineWidth075pt
.OutsideColorIndex = wdRed
End With
另請參閱
支援和意見反應
有關於 Office VBA 或這份文件的問題或意見反應嗎? 如需取得支援服務並提供意見反應的相關指導,請參閱 Office VBA 支援與意見反應。