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
textCell text; may be null. If the text is null, then the cell should be invisible
isHeaderTrue, if it is a header cell
colspanThe number of columns the cell should span
rowspanThe number of rows the cell should span
alignHorizontal cell content alignment
valignVertical cell content alignment
View on GitHub
Install in Dash
PageBlockTableCell Structure Reference