BodyCells

public struct BodyCells : 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: Location?
  • 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?
  • An array that contains the id value of a row header that is applicable to this body cell.

    Declaration

    Swift

    public var rowHeaderIDs: [String]?
  • An array that contains the text value of a row header that is applicable to this body cell.

    Declaration

    Swift

    public var rowHeaderTexts: [String]?
  • If you provide customization input, the normalized version of the row header texts according to the customization; otherwise, the same value as row_header_texts.

    Declaration

    Swift

    public var rowHeaderTextsNormalized: [String]?
  • An array that contains the id value of a column header that is applicable to the current cell.

    Declaration

    Swift

    public var columnHeaderIDs: [String]?
  • An array that contains the text value of a column header that is applicable to the current cell.

    Declaration

    Swift

    public var columnHeaderTexts: [String]?
  • If you provide customization input, the normalized version of the column header texts according to the customization; otherwise, the same value as column_header_texts.

    Declaration

    Swift

    public var columnHeaderTextsNormalized: [String]?
  • Undocumented

    Declaration

    Swift

    public var attributes: [Attribute]?