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
beginandend.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
beginindex of this cell’srowlocation in the current table.Declaration
Swift
public var rowIndexBegin: Int? -
The
endindex of this cell’srowlocation in the current table.Declaration
Swift
public var rowIndexEnd: Int? -
The
beginindex of this cell’scolumnlocation in the current table.Declaration
Swift
public var columnIndexBegin: Int? -
The
endindex of this cell’scolumnlocation in the current table.Declaration
Swift
public var columnIndexEnd: Int? -
An array that contains the
idvalue of a row header that is applicable to this body cell.Declaration
Swift
public var rowHeaderIDs: [String]? -
An array that contains the
textvalue 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
idvalue of a column header that is applicable to the current cell.Declaration
Swift
public var columnHeaderIDs: [String]? -
An array that contains the
textvalue 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]?
View on GitHub
BodyCells Structure Reference