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 object that represents the formatting for this paragraph (positioning, line spacing, etc).

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