TxtListIndentation.Count

TxtListIndentation Count property. Gets or sets how many Character to use as indentation per one list level. The default value is 0 that means no indentation.

TxtListIndentation.Count property

Gets or sets how many Character to use as indentation per one list level. The default value is 0, that means no indentation.

public int Count { get; set; }

Examples

Shows how to configure exporting list items to TXT format.

TxtSaveOptions txtSaveOptions = new TxtSaveOptions();
txtSaveOptions.ListIndentation.Character = ' ';
txtSaveOptions.ListIndentation.Count = 4;
txtSaveOptions.SimplifyListLabels = true;

Converter.Create()
    .From(MyDir + "Simple.docx")
    .To(ArtifactsDir + "TxtSaveOptions.ListIndentation.txt", txtSaveOptions)
    .Execute();

See Also