{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:vb.net}
Public ReadOnly Property ParagraphFormatting() As ParagraphFormatting
{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}