Class OCRTable
Class OCRTable
Namespace: Aspose.OCR
Assembly: Aspose.OCR.dll (26.2.0)
Represents one table with recognized tabular data.
public class OCRTableInheritance
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
Remarks
The index corresponds to the table order in the input document (e.g., 0 for the first table).