{description}
{excerpt}Returns a [ParagraphFormatting|ParagraphFormatting] object based on the paragraph formatting used by the BodyText style. You can then change the properties of this font and use it elsewhere.{excerpt}
{signature:C#}
 public ParagraphFormatting CreateParagraphFormatting()
{signature}{signature:vb.net}
Public Function CreateParagraphFormatting() As ParagraphFormatting
{signature}
{returns}A {{ParagraphFormatting}} object based on the paragraph formatting used by the BodyText style.{returns}
{example}{code:csharp|title=C#}
ParagraphFormatting oParagraphFormatting = oDocument.CreateParagraphFormatting();{code}
{code:vb.net|title=vb.net}
Dim oParagraphFormatting As ParagraphFormatting = oDocument.CreateParagraphFormatting(){code}

{example}