Remarks
The property's default value is 0.
The property returns its default value when the text selection contains multiple paragraphs with mixed left indents or when the text selection does not contain a bulleted or a numbered list. The Selection.
Gets or sets the left indent for a numbered list.
int LeftIndent { get; set; }Private Property LeftIndent() As IntegerThe following example sets the 'Left
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;
textControl1.Selection.ListFormat = lf;Dim lf As TXTextControl.ListFormat = New TXTextControl.ListFormat()
lf.Type = TXTextControl.ListType.Numbered
lf.FirstNumber = 5
lf.FontName = "Calibri"
lf.BulletCharacter = ">"c
lf.BulletSize = 12
lf.FormatCharacter = TXTextControl.ListFormatCharacter.Tab
lf.HangingIndent = 370
lf.LeftIndent = 10
TextControl1.Selection.ListFormat = lfThe property's default value is 0.
The property returns its default value when the text selection contains multiple paragraphs with mixed left indents or when the text selection does not contain a bulleted or a numbered list. The Selection.