Page tree

Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Migration of unmigrated content due to installation of a new plugin
Wiki Markup
{description}
{excerpt}Sets or returns a [ParagraphFormatting|ParagraphFormatting] object that represents the formatting for this paragraph \(positioning, line spacing, etc\).{excerpt}
{signature:C#}
 public ParagraphFormatting Formatting{ get; set; }
{signature}{signature:vb.net}
Public Property Formatting() As ParagraphFormatting
{signature}
{example}{code:csharp|title=C#}

          //--- Return ParagraphFormatting
          ParagraphFormatting formatting = oParagraph.ParagraphFormatting;

          //--- Set ParagraphFormatting
          oParagraph.ParagraphFormatting = oParagraphFormatting;
        {code}
{code:vb.net|title=vb.net}

          '--- Return ParagraphFormatting
          Dim formatting As ParagraphFormatting = oParagraph.ParagraphFormatting

          '--- Set ParagraphFormatting
          oParagraph.ParagraphFormatting = oParagraphFormatting
        {code}

{example}