Rows Collection Object

Description

A collection of Row objects that represent the table rows in the specified selection, range, or table.

Using the Rows Collection

Use the Rows property to return the Rows collection. The following example centers rows in the first table in the active document between the left and right margins.

ActiveDocument.Tables(1).Rows.Alignment = wdAlignRowCenter
Use the Add method to add a row to a table. The following example inserts a row before the first row in the selection.

If Selection.Information(wdWithInTable) = True Then
    Selection.Rows.Add BeforeRow:=Selection.Rows(1)
End If
Use Rows(index), where index is the index number, to return a single Row object. The index number represents the position of the row in the selection, range, or table. The following example deletes the first row in the first table in the active document.

ActiveDocument.Tables(1).Rows(1).Delete
Properties

Alignment property, AllowBreakAcrossPages property, Application property, Borders property, Count property, Creator property, First property, HeadingFormat property, Height property, HeightRule property, Last property, LeftIndent property, Parent property, Shading property, SpaceBetweenColumns property.

Methods

Add method (Cells, Rows, and Columns collections), ConvertToText method, Delete method, DistributeHeight method, Item method, Select method, SetHeight method, SetLeftIndent method.

See Also

Cells collection object, Columns collection object.