After Method

Applies To

TabStops collection object.

Description

Returns the next TabStop object to the right of Position.

Syntax

expression.After(Position)

expression Required. An expression that returns a TabStops collection.

Position Required Single. A location on the ruler, in points.

See Also

Before method.

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.

Set ts = ActiveDocument.Paragraphs(1).TabStops.After(InchesToPoints(1))
ts.Alignment = wdAlignTabCenter