Table of Contents

Event Progress

Namespace
LMKit.Document.Pdf
Assembly
LM-Kit.NET.dll

Raised after each page is processed (OCRed or skipped) during a conversion operation. For concurrent or multi-tenant scenarios, prefer using Progress instead of this static event.

public static event EventHandler<OcrProgressEventArgs> Progress

Returns

EventHandler<OcrProgressEventArgs>
Raised after each page is processed (OCRed or skipped) during a conversion operation. For concurrent or multi-tenant scenarios, prefer using instead of this static event.

Examples

PdfSearchableMaker.Progress += (sender, e) =>
{
    Console.WriteLine($"Page {e.PageIndex + 1}/{e.TotalPages}");
};
Share