Gets or sets the background color of a text frame.

Syntax

public Color BackColor { get; set; }

Examples

The following example uses the BackColor property and sets its value to White.

TXTextControl.TextFrame myFrame = new TXTextControl.TextFrame(new System.Drawing.Size(3000, 2000));
myFrame.BackColor = System.Drawing.Color.White;
textControl1.TextFrames.Add(myFrame, -1);