Table of Contents

Property PageIndex

Namespace
LMKit.Extraction
Assembly
LM-Kit.NET.dll

PageIndex

Gets the zero-based index of the page being processed. Only meaningful during OcrProcessing.

public int PageIndex { get; }

Property Value

int

Examples

extractor.Progress += (sender, e) =>
{
    if (e.Phase == ExtractionPhase.OcrProcessing)
        Console.WriteLine($"OCR page {e.PageIndex + 1} of {e.TotalPages}");
};
Share