A family of Microsoft word processing software products for creating web, email, and print documents.
No. If you want to use VBA to set the alignment of a paragraph, you would use:
Selection.Paragraphs(1).Alignment = wdAlignParagraphCenter
From the VBA help file for Alignment
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.
| VBA |
|---|
| Sub AlignParagraph() <br><br><br>ActiveDocument.Paragraphs(1).Alignment = wdAlignParagraphRight <br><br><br>End Sub |