Table of Contents

Property Progress

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

Progress

An optional per-call progress reporter. When set, this callback receives an OcrProgressEventArgs after each page is processed. Set Cancel to true inside the callback to abort remaining pages.

public IProgress<OcrProgressEventArgs> Progress { get; set; }

Property Value

IProgress<OcrProgressEventArgs>

Remarks

This is the recommended way to receive progress for ImageToSearchablePdf operations. Unlike the static Progress event, this callback is scoped to a single operation and is safe for concurrent scenarios.

Share