Class OCRTablePage

Class OCRTablePage

Namespace: Aspose.OCR
Assembly: Aspose.OCR.dll (25.11.0)

Represents one page with recognized tabular data.

public class OCRTablePage

Inheritance

object OCRTablePage

Inherited Members

object.GetType() , object.MemberwiseClone() , object.ToString() , object.Equals(object?) , object.Equals(object?, object?) , object.ReferenceEquals(object?, object?) , object.GetHashCode()

Remarks

Each page stores the list of table rows detected on that page. If no table is detected, the Aspose.OCR.OCRTablePage.Rows list will be empty.

Constructors

OCRTablePage()

public OCRTablePage()

Properties

PageIndex

Zero-based index of the page in the OCR document.

public int PageIndex { get; set; }

Property Value

int

Remarks

The index corresponds to the page order in the input document (e.g., 0 for the first page).

Rows

Collection of recognized table rows on this page.

public List<OCRTableRow> Rows { get; set; }

Property Value

List < OCRTableRow >

Remarks

Each row contains one or more Aspose.OCR.OCRTableCell objects with recognized text values.