Word) (Selection.Rows 属性

返回一个 Rows 集合,该集合代表某个区域、选定内容或表格中所有的表格行。 只读。

语法

表达式

表达 一个代表 Selection 对象的变量。

备注

有关返回集合的单个成员的信息,请参阅 从集合中返回对象

示例

本示例为插入点所在行的各单元格设置边框。

Selection.Collapse Direction:=wdCollapseStart 
If Selection.Information(wdWithInTable) = True Then 
 Selection.Rows(1).Borders.OutsideLineStyle = wdLineStyleSingle 
Else 
 MsgBox "The insertion point is not in a table." 
End If

另请参阅

Selection 对象

支持和反馈

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