Paragraph.TabStops Property (Word)
Returns or sets a TabStops collection that represents all the custom tab stops for the specified paragraph. Read/write.
Syntax
expression .TabStops
expression A variable that represents a Paragraph object.
Remarks
For information about returning a single member of a collection, see Returning an Object from a Collection.
Example
This example sets the tab stops for every paragraph in the document to match the tab stops in the first paragraph.
Set para1Tabs = ActiveDocument.Paragraphs(1).TabStops
ActiveDocument.Paragraphs.TabStops = para1Tabs