TabStop.Position property (Publisher)

Returns or sets a Variant representing the font position relative to the baseline of the text in the specified range. Positive values move the text above the normal baseline; negative values move the text below the baseline. Indeterminate values are returned as -9999.0. Read/write.

Syntax

expression.Position

expression A variable that represents a TabStop object.

Example

This example adjusts the text in the second story to 5 points below the baseline.

Sub Position() 
 
 Application.ActiveDocument.Stories(2).TextRange.Font.Position = -5 
 
End Sub

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.