TabStops.After Method

Word Developer Reference

Returns the next TabStop object to the right of Position.

Syntax

expression.After(Position)

expression   Required. A variable that represents a TabStops collection.

Parameters

Name Required/Optional Data Type Description
Position Required Single A location on the ruler, in points.

Example

This example changes the alignment of the first custom tab stop in the first paragraph in the active document that's more than 1 inch from the left margin.

Visual Basic for Applications
  Dim tabTemp as TabStop

Set tabTemp = ActiveDocument.Paragraphs(1).TabStops _ .After(InchesToPoints(1))

tabTemp.Alignment = wdAlignTabCenter

See Also