AutoNumberingDetection

TxtLoadOptions.AutoNumberingDetection property

Ottiene o imposta un valore booleano che indica che il rilevamento automatico della numerazione verrà eseguito durante il caricamento di un documento. Il valore predefinito èVERO .

public bool AutoNumberingDetection { get; set; }

Esempi

Mostra come disattivare il rilevamento automatico della numerazione.

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

Guarda anche