Gets or sets a value specifying whether there is a structured list at the current input position. The number format is determined through the StructuredListFormat property. If text is selected, the property specifies this attribute for the whole selected text.

Syntax

public bool? StructuredList { get; set; }
Public Property StructuredList() As Nullable(Of Boolean)

Examples

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

<MenuItem
    Header="Structured List"
    IsCheckable="True"
    IsChecked="{Binding ElementName=textControl1, Path=InputFormat.StructuredList}" />

Remarks

The property returns null when the text selection contains different list settings.