Class OCRTable

Class OCRTable

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

Represents one table with recognized tabular data.

public class OCRTable

Inheritance

object OCRTable

Inherited Members

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

Remarks

Each table stores the list of table rows.

Constructors

OCRTable()

public OCRTable()

Properties

Rows

Collection of recognized table rows.

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.

TableIndex

Zero-based index of the table in the OCR document’s page.

public int TableIndex { get; set; }

Property Value

int

Remarks

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