Gets or sets the width, in twips, of a text frame's border line. To alter the distance between the border line and the text, use the Internal
public int BorderWidth { get; set; }
The following example uses the Border
TXTextControl.TextFrame myFrame = new TXTextControl.TextFrame(new System.Drawing.Size(3000, 2000));
myFrame.BackColor = System.Drawing.Color.Blue;
myFrame.BorderWidth = 0;
textControl1.TextFrames.Add(myFrame, -1);