If you type wdAlignParagraphLeft in the Search drop down box (next to the binoculars), then do the search (Click on the binoculars), you will see that it's a member of the
WdParagraphAlignment class. You will also see that it's a constant that is equal to 0. The other constants of the WdParagraphAlignment class are also listed. You'll see that wdAlignParagraphCenter = 1, wdAlignParagraphDistribute = 4, etc...
So,
Selection.ParagraphFormat.Alignment = wdAlignParagraphLeft
is the sames as
Selection.ParagraphFormat.Alignment = 0
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.