Word) (边框对象
边框 的集合 代表对象的边框的对象。
备注
使用 边框 属性返回 Borders 集合。 下列示例在活动文档中的第一个段落的默认边框。
ActiveDocument.Paragraphs(1).Borders.Enable = True
Border 对象不能添加到 边框 集合。 Borders 集合,集合中的成员数目是有限的并取决于对象的类型。 例如,表具有六个元素在 边框 集合中,而一个段落有四个。
边框 (索引),其中索引标识边框,用于返回单个 边框 对象。 索引可以是 WdBorderType 常量之一。 一些 WdBorderType 常量可能不可用,这取决于您所选择或安装的语言支持 (例如美国英语)。
使用 LineStyle 属性可应用于 边框 对象的边框线。 下列示例在活动文档中第一段下方的双线边框。
With ActiveDocument.Paragraphs(1).Borders(wdBorderBottom)
.LineStyle = wdLineStyleDouble
.LineWidth = wdLineWidth025pt
End With
以下示例将单线边框加在选定内容的首字符四周。
With Selection.Characters(1)
.Font.Size = 36
.Borders.Enable = True
End With
以下示例在第一节中每一页的四周添加艺术型边框。
For Each aBorder In ActiveDocument.Sections(1).Borders
With aBorder
.ArtStyle = wdArtSeattle
.ArtWidth = 20
End With
Next aBorder
方法
属性
- AlwaysInFront
- 应用程序
- Count
- Creator
- DistanceFrom
- DistanceFromBottom
- DistanceFromLeft
- DistanceFromRight
- DistanceFromTop
- Enable
- EnableFirstPageInSection
- EnableOtherPagesInSection
- HasHorizontal
- HasVertical
- InsideColor
- InsideColorIndex
- InsideLineStyle
- InsideLineWidth
- JoinBorders
- OutsideColor
- OutsideColorIndex
- OutsideLineStyle
- OutsideLineWidth
- Parent
- Shadow
- SurroundFooter
- SurroundHeader
另请参阅
支持和反馈
有关于 Office VBA 或本文档的疑问或反馈? 请参阅 Office VBA 支持和反馈,获取有关如何接收支持和提供反馈的指南。