Class OCRTableRow
Class OCRTableRow
Namespace: Aspose.OCR
Assembly: Aspose.OCR.dll (25.11.0)
Represents a single row within a recognized table.
public class OCRTableRowInheritance
Inherited Members
object.GetType() , object.MemberwiseClone() , object.ToString() , object.Equals(object?) , object.Equals(object?, object?) , object.ReferenceEquals(object?, object?) , object.GetHashCode()
Remarks
A row contains a collection of Aspose.OCR.OCRTableCell instances, each representing one table column.
Constructors
OCRTableRow()
public OCRTableRow()Properties
Cells
List of recognized cells within this row.
public List<OCRTableCell> Cells { get; set; }Property Value
List < OCRTableCell >
Remarks
Each cell contains the recognized text and its corresponding column index.
RowIndex
Zero-based index of the row within the table.
public int RowIndex { get; set; }Property Value
Remarks
The index indicates the vertical order of the row within its parent page.