Page tree

Versions Compared

Key

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

Excerpt

Returns a ParagraphFormatting object that is a copy of this style's paragraph formatting. Some style types do not have paragraph formatting. In these cases, this method returns null.

{signature}
{example}{code:csharp|title=C#}

          ParagraphFormatting pFormatting = namedStyl.ParagraphFormatting;
        
{code}
{code:vb.net
|title=vb.net
}

          Dim pFormatting As ParagraphFormatting = namedStyl.ParagraphFormatting
        {code}

{example}
Signature
C#C#
Wiki Markup
{description}
{excerpt}Returns a [ParagraphFormatting|ParagraphFormatting] object that is a copy of this style's paragraph formatting. Some style types do not have paragraph formatting. In these cases, this method returns null.{excerpt}
{signature:C#}
 public ParagraphFormatting ParagraphFormatting{ get; }
Signature
{signature}{signature:vb.net
vb.net
}
Public ReadOnly Property ParagraphFormatting() As ParagraphFormatting
Example
Code Block
csharpcsharp
titleC#
Code Block
vb.nettitle