Font.Position Property

Word Developer Reference

Returns or sets the position of text (in points) relative to the base line. Read/write Long.

Syntax

expression.Position

expression   Required. A variable that represents a Font object.

Remarks

A positive number raises the text, and a negative number lowers it.

Example

This example lowers the selected text by 2 points.

Visual Basic for Applications
  Selection.Font.Position = -2

See Also