Remarks
The property's default value is Color.
The property returns its default value when the text selection contains multiple paragraphs with mixed background colors. The Selection.
Gets or sets the background color of a paragraph. If the background color is transparent, the paragraph's background is the same as the control's background color.
Introduced: X14.
public System.Drawing.Color BackColor { get; set; }
The following example uses the Back
TXTextControl.ParagraphFormat format = new TXTextControl.ParagraphFormat();
format.Alignment = TXTextControl.HorizontalAlignment.Center;
format.Frame = TXTextControl.Frame.Box;
format.FrameStyle = TXTextControl.FrameStyle.Double;
format.BackColor = System.Drawing.Color.White;
textControl1.Selection.ParagraphFormat = format;
The property's default value is Color.
The property returns its default value when the text selection contains multiple paragraphs with mixed background colors. The Selection.