Word) (Rows 对象

的集合 对象,表示指定的选定内容、 范围或表格中的表格行。

备注

使用 Rows 属性可返回 集合。 下面的示例在左右页边距之间为活动文档中第一个表中的行居中对齐。

ActiveDocument.Tables(1).Rows.Alignment = wdAlignRowCenter

使用 添加 将行添加到表的方法。 下面的示例在所选内容中插入的第一行之前的行。

If Selection.Information(wdWithInTable) = True Then 
 Selection.Rows.Add BeforeRow:=Selection.Rows(1) 
End If

使用 (索引),其中索引是索引号,返回一个 Row 对象。 索引号代表选定内容、 范围或表格中的行位置。 下面的示例删除活动文档中第一个表格的第一行。

ActiveDocument.Tables(1).Rows(1).Delete

方法

名称
Add
ConvertToText
删除
DistributeHeight
Select
SetHeight
SetLeftIndent

属性

名称
Alignment
AllowBreakAcrossPages
AllowOverlap
应用程序
Borders
Count
Creator
DistanceBottom
DistanceLeft
DistanceRight
DistanceTop
第一
HeadingFormat
Height
HeightRule
HorizontalPosition
最后一个
LeftIndent
NestingLevel
Parent
RelativeHorizontalPosition
RelativeVerticalPosition
Shading
SpaceBetweenColumns
TableDirection
VerticalPosition
WrapAroundText

另请参阅

Word 对象模型参考

支持和反馈

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