PDFTableCellPosition
public struct PDFTableCellPosition
extension PDFTableCellPosition: Hashable
extension PDFTableCellPosition: Equatable
A cell position represent the coordinate of a cell in a given table
-
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)
-
Creates a hash value of the cell position
Declaration
Swift
public func hash(into hasher: inout Hasher)
-
nodoc
Declaration
Swift
public static func == (lhs: PDFTableCellPosition, rhs: PDFTableCellPosition) -> Bool