Rows.VerticalPosition Property

Word Developer Reference

Returns or sets the vertical distance between the edge of the rows and the item specified by the RelativeVerticalPosition property. Read/write Single.

Syntax

expression.VerticalPosition

expression   Required. A variable that represents a Rows collection.

Remarks

This property can be a number that indicates a measurement in points, or can be any valid WdFramePosition constant.

Example

This example vertically aligns the first table in the active document with the top of the page.

Visual Basic for Applications
  Set myTable = ActiveDocument.Tables(1).Rows
With myTable
    .RelativeVerticalPosition = wdRelativeVerticalPositionPage
    .VerticalPosition = wdTableTop
End With

See Also