Gets or sets the background color of a text frame.

Syntax

public Color BackColor { get; set; }
Public Property BackColor() As Color

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);
Dim MyFrame As New TXTextControl.TextFrame(New System.Drawing.Size(3000, 2000))
MyFrame.BackColor = System.Drawing.Color.White
TextControl1.TextFrames.Add(MyFrame, -1)