Borders.OutsideLineStyle 属性 (Word)
返回或设置指定对象的外边框。 .
语法
expression. OutsideLineStyle
表达式是必需的。 一个代表“Borders”集合的变量。
备注
如果多一种边框应用于指定对象,则此属性将返回 wdUndefined 否则,将返回 False 或 WdLineStyle 常量。 可以设置为 真 、 假 或 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 支持和反馈,获取有关如何接收支持和提供反馈的指南。