PDFTableCellStyle
public struct PDFTableCellStyle : Hashable
Structure used to manage the custom style of a PDFTableCell
-
Custom border styling (see
PDFTableCellBorders
for details)Declaration
Swift
public var borders: PDFTableCellBorders
-
Font used for text content in cells
Declaration
Swift
public var font: Font
-
Creates a new cell style
Declaration
Swift
public init( colors: (fill: Color, text: Color) = (Color.clear, Color.black), borders: PDFTableCellBorders = PDFTableCellBorders(), font: Font = Font.systemFont(ofSize: PDFConstants.defaultFontSize) )
-
nodoc
Declaration
Swift
public static func == (lhs: PDFTableCellStyle, rhs: PDFTableCellStyle) -> Bool
-
nodoc
Declaration
Swift
public func hash(into hasher: inout Hasher)
-
Default cell style not displaying any background or borders
Declaration
Swift
static let none: PDFTableCellStyle