使用英语阅读

通过


Word) (Cell.Row 属性

返回一个 Row 对象,该对象代表包含指定单元格的行。

语法

expressionRow

表达 返回“Cell”对象的表达式。

示例

本示例为表格中插入点所在的行应用底纹。

If Selection.Information(wdWithInTable) = True Then 
 Selection.Cells(1).Row.Shading.Texture = wdTexture10Percent 
Else 
 MsgBox "The insertion point is not in a table." 
End If

另请参阅

单元格对象

支持和反馈

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