TableBodyCells

public struct TableBodyCells : Codable, Equatable

Cells that are not table header, column header, or row header cells.

  • The unique ID of the cell in the current table.

    Declaration

    Swift

    public var cellID: String?
  • The numeric location of the identified element in the document, represented with two integers labeled begin and end.

    Declaration

    Swift

    public var location: TableElementLocation?
  • The textual contents of this cell from the input document without associated markup content.

    Declaration

    Swift

    public var text: String?
  • The begin index of this cell’s row location in the current table.

    Declaration

    Swift

    public var rowIndexBegin: Int?
  • The end index of this cell’s row location in the current table.

    Declaration

    Swift

    public var rowIndexEnd: Int?
  • The begin index of this cell’s column location in the current table.

    Declaration

    Swift

    public var columnIndexBegin: Int?
  • The end index of this cell’s column location in the current table.

    Declaration

    Swift

    public var columnIndexEnd: Int?
  • A list of table row header ids.

    Declaration

    Swift

    public var rowHeaderIDs: [TableRowHeaderIDs]?
  • A list of table row header texts.

    Declaration

    Swift

    public var rowHeaderTexts: [TableRowHeaderTexts]?
  • A list of table row header texts normalized.

    Declaration

    Swift

    public var rowHeaderTextsNormalized: [TableRowHeaderTextsNormalized]?
  • A list of table column header ids.

    Declaration

    Swift

    public var columnHeaderIDs: [TableColumnHeaderIDs]?
  • A list of table column header texts.

    Declaration

    Swift

    public var columnHeaderTexts: [TableColumnHeaderTexts]?
  • A list of table column header texts normalized.

    Declaration

    Swift

    public var columnHeaderTextsNormalized: [TableColumnHeaderTextsNormalized]?
  • A list of document attributes.

    Declaration

    Swift

    public var attributes: [DocumentAttribute]?