PDFTableCellPosition

public struct PDFTableCellPosition
extension PDFTableCellPosition: Hashable
extension PDFTableCellPosition: Equatable

A cell position represent the coordinate of a cell in a given table

  • row

    Vertical row index, starting at zero

    Declaration

    Swift

    public var row: Int
  • Horizontal column index, starting at zero

    Declaration

    Swift

    public var column: Int
  • Creates a new position with the given row and column

    Declaration

    Swift

    public init(row: Int, column: Int)

PDFTableCellPosition + Hashable

  • Creates a hash value of the cell position

    Declaration

    Swift

    public func hash(into hasher: inout Hasher)

PDFTableCellPosition + Equatable

  • nodoc

    Declaration

    Swift

    public static func == (lhs: PDFTableCellPosition, rhs: PDFTableCellPosition) -> Bool