-
Count of rows which will use the style configured in
rowHeaderStyle
Declaration
Swift
public var rowHeaderCount: Int
-
Count of columns which will use the style configured in
columnHeaderStyle
Declaration
Swift
public var columnHeaderCount: Int
-
Count of footers which will use the style configured in
footerStyle
Declaration
Swift
public var footerCount: Int
-
Style used for the outer border
Declaration
Swift
public var outline: PDFLineStyle
-
Style of cells in the header rows
Declaration
Swift
public var rowHeaderStyle: PDFTableCellStyle
-
Style of cells in the header columns
Declaration
Swift
public var columnHeaderStyle: PDFTableCellStyle
-
Style of cells in the footer rows
Declaration
Swift
public var footerStyle: PDFTableCellStyle
-
Style of cells without special purpose
Declaration
Swift
public var contentStyle: PDFTableCellStyle
-
Style used for alternating content rows
Setting this property will enable alternating row styling, which will apply this style to every other row
Declaration
Swift
public var alternatingContentStyle: PDFTableCellStyle?
-
init(rowHeaderCount:
columnHeaderCount: footerCount: outline: rowHeaderStyle: columnHeaderStyle: footerStyle: contentStyle: alternatingContentStyle: ) Create a table style
Declaration
Swift
public init( rowHeaderCount: Int = 1, columnHeaderCount: Int = 1, footerCount: Int = 1, outline: PDFLineStyle = PDFLineStyle(), rowHeaderStyle: PDFTableCellStyle = PDFTableCellStyle(), columnHeaderStyle: PDFTableCellStyle = PDFTableCellStyle(), footerStyle: PDFTableCellStyle = PDFTableCellStyle(), contentStyle: PDFTableCellStyle = PDFTableCellStyle(), alternatingContentStyle: PDFTableCellStyle? = nil )
Parameters
rowHeaderCount
Number of top rows which have header style
columnHeaderCount
Number of left columns with header style
footerCount
Number of footer rows with header style
outline
Line style of the outer borderlines
showHorizontalGridLines
Render horizontal grid lines
showVerticalGridLines
Render vertical grid lines
showRowHeaderGridLines
Render row header grid lines
showColumnHeaderGridLines
Render column header grid lines
showFooterGridLines
Render footer grid lines
rowHeaderStyle
The cell style of row header cells
columnHeaderStyle
The cell style of row header cells
footerStyle
The cell style of row header cells
-
nodoc
Declaration
Swift
public func copy() -> PDFTableStyle
-
nodoc
Declaration
Swift
public static func == (lhs: PDFTableStyle, rhs: PDFTableStyle) -> Bool