Selection.Rows (Word)
Retorna uma coleção Rows que representa todas as linhas de tabela em um intervalo, seleção ou tabela. Somente leitura.
Para obter informações sobre como retornar um único membro de uma coleção, consulte retornando um objeto de uma coleção.
Selection.Collapse Direction:=wdCollapseStart
If Selection.Information(wdWithInTable) = True Then
Selection.Rows(1).Borders.OutsideLineStyle = wdLineStyleSingle
Else
MsgBox "The insertion point is not in a table."
End If