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; }
Public Property BorderWidth() As Integer
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);
Dim MyFrame As New TXTextControl.TextFrame(New System.Drawing.Size(3000, 2000))
MyFrame.BackColor = System.Drawing.Color.Blue
MyFrame.BorderWidth = 0
TextControl1.TextFrames.Add(MyFrame, -1)