autoNumberingDetection property

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.

get autoNumberingDetection(): boolean

Examples

Shows how to disable automatic numbering detection.

let options = new aw.Loading.TxtLoadOptions();
options.autoNumberingDetection = false;
let doc = new aw.Document(base.myDir + "Number detection.txt", options);

See Also