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
begin
andend
offsets, 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
begin
index of this cell’srow
location in the current table.Declaration
Swift
public var rowIndexBegin: Int?
-
The
end
index of this cell’srow
location in the current table.Declaration
Swift
public var rowIndexEnd: Int?
-
The
begin
index of this cell’scolumn
location in the current table.Declaration
Swift
public var columnIndexBegin: Int?
-
The
end
index of this cell’scolumn
location in the current table.Declaration
Swift
public var columnIndexEnd: Int?