Remarks
The property's default value is false.
The property returns its default value when the text selection contains multiple paragraphs with mixed settings or when the text selection does not contain a numbered list. The Selection.
Gets or sets a value determining whether a new numbered list begins.
public bool RestartNumbering { get; set; }
The following example sets the 'Restart
TXTextControl.ListFormat lf = new TXTextControl.ListFormat();
lf.Type = TXTextControl.ListType.Numbered;
lf.FirstNumber = 5;
lf.FontName = "Calibri";
lf.BulletCharacter = '>';
lf.BulletSize = 12;
lf.FormatCharacter = TXTextControl.ListFormatCharacter.Tab;
lf.HangingIndent = 370;
lf.LeftIndent = 10;
lf.Level = 2;
lf.RestartNumbering = false;
textControl1.Selection.ListFormat = lf;
The property's default value is false.
The property returns its default value when the text selection contains multiple paragraphs with mixed settings or when the text selection does not contain a numbered list. The Selection.