Table.Rows property (Word)

Returns a Rows collection that represents all the table rows within a table. Read-only.

Syntax

expression.Rows

expression A variable that represents a 'Table' object.

Remarks

For information about returning a single member of a collection, see Returning an object from a collection.

Example

This example deletes the second row from the first table in the active document.

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

See also

Table Object

Support and feedback

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.