Property TotalPages
- Namespace
- LMKit.Extraction
- Assembly
- LM-Kit.NET.dll
TotalPages
Gets the total number of pages to process. Only meaningful during OcrProcessing.
public int TotalPages { get; }
Property Value
Examples
extractor.Progress += (sender, e) =>
{
if (e.Phase == ExtractionPhase.OcrProcessing)
Console.WriteLine($"OCR page {e.PageIndex + 1} of {e.TotalPages}");
};