Limitations
Read only.
Returns an array of all supported number formats for numbered and structured lists. This property can be used to fill a combo box or a menu.
public NumberFormat[] NumberFormats { get; }
Public ReadOnly Property NumberFormats() As NumberFormat()
Member | Description |
---|---|
Arabic |
The list is numbered with Arabic numbers (1, 2, 3...). |
Letters | The list is numbered with letters (a, b, c...). |
Capital |
The list is numbered with capital letters (A, B, C...). |
Roman |
The list is numbered with Roman numbers (I, II, III...). |
Small |
The list is numbered with small Roman numbers (i, ii, iii...). |
The following XAML example shows how to bind radio buttons to the Numbered
?
xmlns:tx="clr-namespace:TXTextControl.WPF;assembly=TXTextControl.WPF"
?
<Window.Resources>
<tx:BooleanConverter x:Key="boolConv" />
</Window.Resources>
?
<RadioButton
Content="{Binding ElementName=textControl1, Path=InputFormat.NumberFormats[0], Mode=OneTime}"
GroupName="numberFormat"
IsChecked="{Binding
ElementName=textControl1,
Path=InputFormat.NumberedListFormat,
Converter={StaticResource boolConv},
ConverterParameter=ArabicNumbers}" />
<RadioButton
Content="{Binding ElementName=textControl1, Path=InputFormat.NumberFormats[1], Mode=OneTime}"
GroupName="numberFormat"
IsChecked="{Binding
ElementName=textControl1,
Path=InputFormat.NumberedListFormat,
Converter={StaticResource boolConv},
ConverterParameter=Letters}" />
?
Read only.