Row.Next Property

Word Developer Reference

Returns a Row object that represents the table row that is next in the collection of rows in a table. Read-only.

Syntax

expression.Next

expression   A variable that represents a Row object.

Example

If the selection is in a table, this example selects the contents of the next table row.

Visual Basic for Applications
  If Selection.Information(wdWithInTable) = True Then
    Selection.Row(1).Next.Select
End If

See Also