Word) (Borders.OutsideLineWidth 屬性
會傳回或設定物件外框線的線條寬度。 讀取/寫入。
語法
expression. OutsideLineWidth
需要 expression。 代表 'Borders' 集合的變數。
註解
如果物件沒有外框線具有一個以上的線條寬度,這個屬性會傳回 wdUndefined 否則會傳回 False 或 WdLineWidth 常數。 可以設為 True 、 False 或 WdLineWidth 常數。
範例
這個範例會在使用中文件的第一個表格四周新增波浪框線。
If ActiveDocument.Tables.Count >= 1 Then
With ActiveDocument.Tables(1).Borders
.OutsideLineStyle = wdLineStyleSingleWavy
.OutsideLineWidth = wdLineWidth075pt
End With
End If
這個範例會在使用中文件前四個段落四周新增虛線框線。
Set myDoc = ActiveDocument
Set myRange = myDoc.Range(Start:=myDoc.Paragraphs(1).Range.Start, _
End:=myDoc.Paragraphs(4).Range.End)
myRange.Borders.OutsideLineStyle = wdLineStyleDot
myRange.Borders.OutsideLineWidth = wdLineWidth075pt
另請參閱
支援和意見反應
有關於 Office VBA 或這份文件的問題或意見反應嗎? 如需取得支援服務並提供意見反應的相關指導,請參閱 Office VBA 支援與意見反應。