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