Property Progress
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
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.