PDFTableCellBorders
public struct PDFTableCellBorders : Hashable
Structure used to style the border lines of a PDFTableCell
-
Style of left edge line
Declaration
Swift
public var left: PDFLineStyle
-
Style of top edge line
Declaration
Swift
public var top: PDFLineStyle
-
Style of right edge line
Declaration
Swift
public var right: PDFLineStyle
-
Style of bottom edge line
Declaration
Swift
public var bottom: PDFLineStyle
-
Creates a new instance with the given line styles
Declaration
Swift
public init( left: PDFLineStyle = .none, top: PDFLineStyle = .none, right: PDFLineStyle = .none, bottom: PDFLineStyle = .none )
-
nodoc
Declaration
Swift
public static func == (lhs: PDFTableCellBorders, rhs: PDFTableCellBorders) -> Bool
-
nodoc
Declaration
Swift
public func hash(into hasher: inout Hasher)
-
Convenience configuration for not displaying any cell border
Declaration
Swift
static let none: PDFTableCellBorders