TxtLoadOptions.AutoNumberingDetection

TxtLoadOptions AutoNumberingDetection property. Gets or sets a boolean value indicating either automatic numbering detection will be performed while loading a document. The default value is true.

TxtLoadOptions.AutoNumberingDetection property

Gets or sets a boolean value indicating either automatic numbering detection will be performed while loading a document. The default value is true.

public bool AutoNumberingDetection { get; set; }

Examples

Shows how to disable auto numbering detection upon loading TXT documents.

TxtLoadOptions txtLoadOptions = new TxtLoadOptions();
txtLoadOptions.AutoNumberingDetection = false;

Converter.Create()
    .From(MyDir + "Simple.txt", txtLoadOptions)
    .To(ArtifactsDir + "TxtLoadOptions.AutoNumberingDetection.docx")
    .Execute();

See Also