AutoNumberingDetection

TxtLoadOptions.AutoNumberingDetection property

Hämtar eller ställer in ett booleskt värde som indikerar att antingen automatisk numreringsdetektering kommer att utföras när ett dokument laddas. Standardvärdet ärSann .

public bool AutoNumberingDetection { get; set; }

Exempel

Visar hur du inaktiverar automatisk numreringsdetektering.

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

Se även