Share via


Rows.Height Property (Word)

Returns or sets the height of the specified rows in a table. Read/write Single.

Syntax

expression .Height

expression A variable that represents a Rows collection.

Remarks

If the HeightRule property of the specified row is wdRowHeightAuto, Height returns wdUndefined; setting the Height property sets HeightRule to wdRowHeightAtLeast.

Example

This example sets the height of the rows in the first table in the active document to at least 20 points.

ActiveDocument.Tables(1).Rows.Height = 20

See Also

Concepts

Rows Object Members

Rows Collection Object