Word) (Borders.OutsideLineStyle 屬性
會傳回或設定指定之物件的外框線。 .
語法
expression. OutsideLineStyle
需要 expression。 代表 'Borders' 集合的變數。
註解
此屬性會傳回 wdUndefined 如果超過一種框線套用至指定的物件 ;否則會傳回 False 或 WdLineStyle 常數。 可以設為 True 、 False 或 WdLineStyle 常數。
True 是表示 將的線條樣式設定為預設線條樣式] 和 [預設線條寬度的行寬。 設定的預設線條樣式及寬度,可以使用 DefaultBorderLineWidth 和 DefaultBorderLineStyle 屬性。
請使用下列任何一個指令,從使用中文件的第一個表格中移除外框線。
ActiveDocument.Tables(1).Borders.OutsideLineStyle = wdLineStyleNone
ActiveDocument.Tables(1).Borders.OutsideLineStyle = False
範例
這個範例會在使用中文件裡第一個段落四周新增 0.75 點的雙框線。
With ActiveDocument.Paragraphs(1).Borders
.OutsideLineStyle = wdLineStyleDouble
.OutsideLineWidth = wdLineWidth075pt
End With
這個範例會在使用中文件的第一個表格四周新增框線。
If ActiveDocument.Tables.Count >= 1 Then
Set myTable = ActiveDocument.Tables(1)
myTable.Borders.OutsideLineStyle = wdLineStyleSingle
End If
另請參閱
支援和意見反應
有關於 Office VBA 或這份文件的問題或意見反應嗎? 如需取得支援服務並提供意見反應的相關指導,請參閱 Office VBA 支援與意見反應。