PageBlockTableCell
public struct PageBlockTableCell : Codable, Equatable, FunctionResult
Represents a cell of a table
-
Cell text; may be null. If the text is null, then the cell should be invisible
Declaration
Swift
public let text: RichText?
-
True, if it is a header cell
Declaration
Swift
public let isHeader: Bool
-
The number of columns the cell should span
Declaration
Swift
public let colspan: Int32
-
The number of rows the cell should span
Declaration
Swift
public let rowspan: Int32
-
Horizontal cell content alignment
Declaration
Swift
public let align: PageBlockHorizontalAlignment
-
Vertical cell content alignment
Declaration
Swift
public let valign: PageBlockVerticalAlignment
-
Represents a cell of a table
Declaration
Swift
public init(text: RichText?, isHeader: Bool, colspan: Int32, rowspan: Int32, align: PageBlockHorizontalAlignment, valign: PageBlockVerticalAlignment)
Parameters
text
Cell text; may be null. If the text is null, then the cell should be invisible
isHeader
True, if it is a header cell
colspan
The number of columns the cell should span
rowspan
The number of rows the cell should span
align
Horizontal cell content alignment
valign
Vertical cell content alignment