AutoNumberingDetection

TxtLoadOptions.AutoNumberingDetection property

Obtiene o establece un valor booleano que indica que se realizará la detección de numeración automática mientras se carga un documento. El valor predeterminado esverdadero .

public bool AutoNumberingDetection { get; set; }

Ejemplos

Muestra cómo desactivar la detección automática de numeración.

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

Ver también