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; }
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;
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.