TableHeaders
public struct TableHeaders : Codable, Equatable
The contents of the current table’s header.
-
The unique ID of the cell in the current table.
Declaration
Swift
public var cellID: String? -
The location of the table header cell in the current table as defined by its
beginandendoffsets, respectfully, in the input document.Declaration
Swift
public var location: [String : JSON]? -
The textual contents of the 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?
View on GitHub
TableHeaders Structure Reference