Row Property
Applies To
Cell object.
Description
Returns a Row object that represents the row containing the specified cell. Read-only.
See Also
Column property, RowIndex property, Rows property.
Example
This example applies shading to the table row that contains the insertion point.
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