Gets or sets the background color of a text frame.
public Color BackColor { get; set; }
Public Property BackColor() As Color
The following example uses the Back
TXTextControl.TextFrame myFrame = new TXTextControl.TextFrame(new System.Drawing.Size(3000, 2000));
myFrame.BackColor = System.Drawing.Color.White;
textControl1.TextFrames.Add(myFrame, -1);
Dim MyFrame As New TXTextControl.TextFrame(New System.Drawing.Size(3000, 2000))
MyFrame.BackColor = System.Drawing.Color.White
TextControl1.TextFrames.Add(MyFrame, -1)