Range.ParagraphFormat (Word)

Returns or sets a ParagraphFormat object that represents the paragraph settings for the specified range.


Set myRange = Documents("MyDoc.doc").Content 
With myRange.ParagraphFormat 
 .Space2 
 .TabStops.Add Position:=InchesToPoints(.25) 
End With