Range.ParagraphFormat (Word)
Gibt ein ParagraphFormat -Objekt zurück, das die Absatzeinstellungen für den angegebenen Bereich darstellt, oder legt dieses fest.
Set myRange = Documents("MyDoc.doc").Content
With myRange.ParagraphFormat
.Space2
.TabStops.Add Position:=InchesToPoints(.25)
End With