
Specifies whether text frames that have no border line are shown with marker lines.
Introduced: 12.0.
[C#]
public bool TextFrameMarkerLines { get; set; }
[Visual Basic]
Public Property TextFrameMarkerLines() As Boolean
The following XAML example shows how to bind the TextFrameMarkerLines property to a check box.
<CheckBox
Content="Show text frame marker lines"
IsChecked="{Binding ElementName=textControl1, Path=TextFrameMarkerLines}" />