Gets or sets the color used to display the color of frame lines at the current text input position. If text is selected, the property specifies the color of frame lines used in the whole selected text. A frame line color can be set for table cells and paragraphs.

Introduced: X14.

Syntax

public System.Drawing.Color? FrameLineColor { get; set; }
Public Property FrameLineColor() As Nullable(Of System.Drawing.Color)

Examples

The following XAML example shows how to bind the BottomFrameLine property to a checkable menu item.

<MenuItem
    IsCheckable="True"
    Header="Bottom Frame Line"
    IsChecked="{Binding ElementName=textControl1, Path=InputFormat.BottomFrameLine}" />

Remarks

The property returns null when the text selection contains multiple frame lines with mixed colors.