Paragraph.Alignment (Word)

Returns or sets a WdParagraphAlignment constant that represents the alignment for the specified paragraphs. Here you can find possible values for WdParagraphAlignment.

Some of the WdParagraphAlignment constants, depending on the language support (U.S. English, for example) that you've selected or installed.


Sub AlignParagraph() 
 ActiveDocument.Paragraphs(1).Alignment = _ 
 wdAlignParagraphRight 
End Sub