An instance of the List
public class ListFormat
Public Class ListFormat
The following example shows how to create a new List
TXTextControl.ListFormat lf = new TXTextControl.ListFormat();
lf.Type = TXTextControl.ListType.Numbered;
lf.FirstNumber = 5;
textControl1.Selection.ListFormat = lf;
Dim lf As TXTextControl.ListFormat = New TXTextControl.ListFormat()
lf.Type = TXTextControl.ListType.Numbered
lf.FirstNumber = 5
TextControl1.Selection.ListFormat = lf
Constructor | Description |
---|---|
List |
Creates a new instance of the List |
Enumeration | Description |
---|---|
Attribute | Determines a certain list format attribute. |
Field | Description |
---|---|
Max |
Represents the maximum of levels for bulleted and numbered lists. |
Max |
Represents the maximum number of charcters for the additinal text in front and behind the number of a numbered list. |
Property | Description |
---|---|
Bullet |
Gets or sets the symbol character for a bulleted list. |
Bullet |
Gets or sets the size of the symbol character for a bulleted list. |
Char |
Obsolete. |
Char |
Obsolete. |
First |
Gets or sets the starting number for a numbered list. |
Font |
Gets or sets the font used for the bullet character. |
Format |
Gets or sets the formatting character for a bulleted or numbered list. |
Hanging |
Gets or sets the hanging indent of a numbered list. |
Left |
Gets or sets the left indent for a numbered list. |
Level | Gets or sets the level for a bulleted or numbered list. |
Number |
Gets or sets the number format for a numbered list. |
Restart |
Gets or sets a value determining whether a new numbered list begins. |
Text |
Gets or sets the text that is displayed behind the number in a numbered list. |
Text |
Gets or sets the text that is displayed in front of the number in a numbered list. |
Type | Gets or sets the type of the list, bulleted, numbered or none. |