Property PageStrategy
PageStrategy
Gets the processing strategy used for the current page. Only meaningful during page processing phases.
public PageProcessingMode PageStrategy { get; }
Property Value
Examples
pdfChat.DocumentImportProgress += (sender, e) =>
{
if (e.Phase == DocumentImportPhase.PageProcessingStarted)
{
Console.WriteLine($"Page {e.PageIndex + 1} strategy: {e.PageStrategy}");
}
};