Remarks
The property's default value is System
The property returns its default value when the text selection contains multiple paragraphs with mixed frame colors. The Selection.
Gets or sets the color used for the frame lines of a paragraph.
Introduced: X14.
public System.Drawing.Color FrameLineColor { get; set; }
Public Property FrameLineColor() As System.Drawing.Color
The following example uses the Frame
TXTextControl.ParagraphFormat format = new TXTextControl.ParagraphFormat();
format.Alignment = TXTextControl.HorizontalAlignment.Center;
format.Frame = TXTextControl.Frame.Box;
format.FrameLineColor = System.Drawing.Color.White;
textControl1.Selection.ParagraphFormat = format;
Dim format As TXTextControl.ParagraphFormat = New TXTextControl.ParagraphFormat()
format.Alignment = TXTextControl.HorizontalAlignment.Center
format.Frame = TXTextControl.Frame.Box
format.FrameLineColor = System.Drawing.Color.White
TextControl1.Selection.ParagraphFormat = format
The property's default value is System
The property returns its default value when the text selection contains multiple paragraphs with mixed frame colors. The Selection.