TxtSaveOptions.SimplifyListLabels

TxtSaveOptions SimplifyListLabels property. Specifies whether the program should simplify list labels in case of complex label formatting not being adequately represented by plain text.

TxtSaveOptions.SimplifyListLabels property

Specifies whether the program should simplify list labels in case of complex label formatting not being adequately represented by plain text.

If set to true, numbered list labels are written in simple numeric format and itemized list labels as simple ASCII characters. The default value is false.

public bool SimplifyListLabels { 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