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.

public bool AutoNumberingDetection { get; set; }

Examples

Shows how to disable automatic numbering detection.

TxtLoadOptions options = new TxtLoadOptions { AutoNumberingDetection = false };
Document doc = new Document(MyDir + "Number detection.txt", options);

See Also