ColumnHeaders

public struct ColumnHeaders : Codable, Equatable

Column-level cells, each applicable as a header to other cells in the same column as itself, of the current table.

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

    Declaration

    Swift

    public var cellID: String?
  • The location of the column header cell in the current table as defined by its begin and end offsets, respectfully, in the input document.

    Declaration

    Swift

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

    Declaration

    Swift

    public var text: String?
  • If you provide customization input, the normalized version of the cell text according to the customization; otherwise, the same value as text.

    Declaration

    Swift

    public var textNormalized: 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?