Table of Contents

Class OcrPage

Namespace
ScanbotSDK.MAUI.Common
Assembly
DocumentSDK.MAUI.dll

Represents the result of running OCR on a single page

public sealed class OcrPage
Inheritance
OcrPage
Inherited Members

Properties

Lines

Enumerates all lines on the page.

public IEnumerable<OcrResultBlock> Lines { get; set; }

Property Value

IEnumerable<OcrResultBlock>

Paragraphs

Enumerates all paragraphs on the page.

public IEnumerable<OcrResultBlock> Paragraphs { get; set; }

Property Value

IEnumerable<OcrResultBlock>

Text

The complete text of the page.

public string Text { get; set; }

Property Value

string

The text.

Words

Enumerates all words on the page.

public IEnumerable<OcrResultBlock> Words { get; set; }

Property Value

IEnumerable<OcrResultBlock>