Remarks
The property returns null when the text selection contains different list settings.
Gets or sets a value specifying whether there is a bulleted list at the current input position. The bullet character is determined through the Bullet
public bool? BulletedList { get; set; }
Public Property BulletedList() As Nullable(Of Boolean)
The following XAML example shows how to bind the Bulleted
<MenuItem
Header="Bulleted List"
IsCheckable="True"
IsChecked="{Binding ElementName=textControl1, Path=InputFormat.BulletedList}" />
The property returns null when the text selection contains different list settings.