auto_numbering_detection property

TxtLoadOptions.auto_numbering_detection property

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

@property
def auto_numbering_detection(self) -> bool:
    ...

@auto_numbering_detection.setter
def auto_numbering_detection(self, value: bool):
    ...

Examples

Shows how to disable automatic numbering detection.

options = aw.loading.TxtLoadOptions()
options.auto_numbering_detection = False
doc = aw.Document(MY_DIR + "Number detection.txt", options)

See Also