Borders.OutsideColor 屬性 (Word)
會傳回或設定外框線的 24 位色彩。 .
語法
expression. OutsideColor
需要 expression。 代表 'Borders' 集合的變數。
註解
此屬性可以是任何有效的 WdColor 常數,或是 Visual Basic RGB 函數所傳回的值。
如果 OutsideLineStyle 屬性設定為 wdLineStyleNone 或 False ,設定這個屬性就沒有作用。
範例
這個範例會在使用中文件之第一個表格的列及欄之間新增框線,然後設定內外框線的色彩。
If ActiveDocument.Tables.Count >= 1 Then
Set myTable = ActiveDocument.Tables(1)
With myTable.Borders
.InsideLineStyle = True
.InsideColor = wdColorBrightGreen
.OutsideColor = wdColorDarkTeal
End With
End If
這個範例會在使用中文件裡第一個段落四周新增深紅色 0.75 點的雙框線。
With ActiveDocument.Paragraphs(1).Borders
.OutsideLineStyle = wdLineStyleDouble
.OutsideLineWidth = wdLineWidth075pt
.OutsideColor = wdColorDarkRed
End With
另請參閱
支援和意見反應
有關於 Office VBA 或這份文件的問題或意見反應嗎? 如需取得支援服務並提供意見反應的相關指導,請參閱 Office VBA 支援與意見反應。