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.
Hash values are not guaranteed to be equal across different executions of your program. Do not save hash values to use during a future execution.
Declaration
Swift
public func hash(into hasher: inout Hasher)
-
Returns a Boolean value indicating whether two values are equal.
Equality is the inverse of inequality. For any values
a
andb
,a == b
implies thata != b
isfalse
.- lhs: A value to compare.
- rhs: Another value to compare.
Declaration
Swift
public static func == (lhs: PDFTableCellPosition, rhs: PDFTableCellPosition) -> Bool