This example adds line numbers to the active document and sets the distance between the line numbers and the document text to 4 picas.
With ActiveDocument.PageSetup.LineNumbering
.Active = True
.DistanceFromText = PicasToPoints(4)
End With
This example sets the first-line indent for the selected paragraphs to 3 picas.
Selection.ParagraphFormat.FirstLineIndent = PicasToPoints(3)