Remarks
The property's default value is Number
The property returns its default value when the text selection contains multiple paragraphs with mixed number formats or when the text selection does not contain a numbered list. The Selection.
Gets or sets the number format for a numbered list. The property's value is a member of the Number
public NumberFormat NumberFormat { get; set; }
Public Property NumberFormat() 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 example uses Number
TXTextControl.ListFormat lf = new TXTextControl.ListFormat();
lf.Type = TXTextControl.ListType.Numbered;
lf.NumberFormat = TXTextControl.NumberFormat.Letters;
textControl1.Selection.ListFormat = lf;
Dim lf As TXTextControl.ListFormat = New TXTextControl.ListFormat()
lf.Type = TXTextControl.ListType.Numbered
lf.NumberFormat = TXTextControl.NumberFormat.Letters;
TextControl1.Selection.ListFormat = lf
The property's default value is Number
The property returns its default value when the text selection contains multiple paragraphs with mixed number formats or when the text selection does not contain a numbered list. The Selection.