Sets or returns a ParagraphFormatting.Justification object that represents the text justification for a paragraph.

 public Justification TextJustification{ get; set; }
Public Property TextJustification() As Justification

MS Word equivalent: Format menu > Paragraph... > Indents and Spacing tab > General section > Alignment:


          //--- Return Justification
          ParagraphFormatting.Justification oJustification =
               oParagraphFormatting.TextJustification;

          //--- Set Justification to Right
          oParagraphFormatting.TextJustification =
               ParagraphFormatting.Justification.Right;
        

          '--- Return Justification
          Dim oJustification As ParagraphFormatting.Justification = _
               oParagraphFormatting.TextJustificaiton

          '--- Set Justification
          oParagraphFormatting.TextJustification = _
               ParagraphFormatting.Justification.Right