Table.Rows property (Word)
Returns a Rows collection that represents all the table rows within a table. Read-only.
expression.Rows
expression A variable that represents a 'Table' object.
For information about returning a single member of a collection, see Returning an object from a collection.
This example deletes the second row from the first table in the active document.
ActiveDocument.Tables(1).Rows(2).Delete
Have questions or feedback about Office VBA or this documentation? Please see Office VBA support and feedback for guidance about the ways you can receive support and provide feedback.