Gets or sets the style's paragraph attributes. The property's value is an object of the type Paragraph
public ParagraphFormat ParagraphFormat { get; set; }
The following example uses the Paragraph
textControl1.Text = "TX Text Control";
TXTextControl.ParagraphStyle par = new TXTextControl.ParagraphStyle("CenterBold");
par.Bold = true;
par.ParagraphFormat.Alignment = TXTextControl.HorizontalAlignment.Center;
textControl1.ParagraphStyles.Add(par);
textControl1.Select(0,0);
textControl1.Selection.FormattingStyle = "CenterBold";