{description}
{excerpt}Sets or returns a [ParagraphFormatting.Justification|ParagraphFormatting.Justification] object that represents the justification for a table created with this formatting. Possible values: Left, Center, Right, LeftRight.{excerpt}
{signature:C#}
 public Justification Justification{ get; set; }
{signature}{signature:vb.net}
Public Property Justification() As Justification
{signature}
{example}{code:csharp|title=C#}

          //--- Return Justification
          ParagraphFormatting.Justification oJustification =
               oTableFormatting.Justification;

          //--- Set Justification
          oTableFormatting.Justification =
               ParagraphFormatting.Justification.Center;
        {code}
{code:vb.net|title=vb.net}

          '--- Return Justification
          Dim oJustification As ParagraphFormatting.Justification = _
               oTableFormatting.Justification

          '--- Set Justification
          oTableFormatting.Justification = _
               ParagraphFormatting.Justification.Center
        {code}

{example}