Row 属性

       

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

expression.Row

expression   必需。该表达式返回一个 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