
Gets or sets a value indicating that markers for hypertext targets are shown or not.
Introduced: 13.0.
[C#]
public bool DocumentTargetMarkers { get; set; }
[Visual Basic]
Public Property DocumentTargetMarkers() As Boolean
The following XAML example shows how to bind the DocumentTargetMarkers property to a check box.
<CheckBox
Content="Show document target markers"
IsChecked="{Binding ElementName=textControl1, Path=DocumentTargetMarkers}" />