Rows Collection Object
Word Developer Reference |
A collection of Row objects that represent the table rows in the specified selection, range, or table.
Remarks
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.
Visual Basic for Applications |
---|
|
Use the Add method to add a row to a table. The following example inserts a row before the first row in the selection.
Visual Basic for Applications |
---|
|
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.
Visual Basic for Applications |
---|
|
See Also