Page tree

Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Migrated to Confluence 4.0
Description

Excerpt

Sets or returns a ParagraphFormatting.Justification object that represents the justification for a table created with this formatting. Possible values: Left, Center, Right, LeftRight.

{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}
Signature
C#C#
Wiki Markup
{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}{signature:vb.net
vb.net
}
Public Property Justification() As Justification
Example
Code Block
csharpcsharp
titleC#
Code Block
vb.nettitle