使用英语阅读

通过


Word) (Lines 对象

表示类型 wdTextRectangle 的是一个 矩形 对象中的行的 的对象集合。

备注

使用 Lines 属性可返回指定矩形的线条的集合。 下面的示例访问活动文档中的第一页中第一个矩形中的行。

Dim objLines As Lines 
 
Set objLines = ActiveDocument.ActiveWindow.Panes(1) _ 
 .Pages(1).Rectangles(1).Lines

使用指定的 矩形 对象的 RectangleType 属性以确定 矩形 对象的类型 wdTextRectangle 。 如果指定的矩形包含文字,下面的示例返回活动文档第一页中的第一个矩形中的行的集合。

Dim objRectangle As Rectangle 
Dim objLines As Lines 
 
Set objRectangle = ActiveDocument.ActiveWindow _ 
 .Panes(1).Pages(1).Rectangles(1) 
 
If objRectangle.RectangleType = wdTextRectangle Then _ 
 Set objLines = objRectangle.Lines

另请参阅

Word 对象模型参考

支持和反馈

有关于 Office VBA 或本文档的疑问或反馈? 请参阅 Office VBA 支持和反馈,获取有关如何接收支持和提供反馈的指南。