Paragraph.Alignment property (Word)

Returns or sets a WdParagraphAlignment constant that represents the alignment for the specified paragraphs. Read/write.

Syntax

expression.Alignment

expression Required. A variable that represents a 'Paragraph' object.

Remarks

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

Example

This example right-aligns the first paragraph in the active document.

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

See also

Paragraph Object

Support and feedback

Have questions or feedback about Office VBA or this documentation? Please see Office VBA support and feedback for guidance about the ways you can receive support and provide feedback.