Class: Xberg::TableCell
- Inherits:
-
Object
- Object
- Xberg::TableCell
- Defined in:
- sig/types.rbs
Instance Attribute Summary collapse
-
#col_span ⇒ Integer?
Returns the value of attribute col_span.
-
#content ⇒ String?
Returns the value of attribute content.
-
#is_header ⇒ Boolean?
Returns the value of attribute is_header.
-
#row_span ⇒ Integer?
Returns the value of attribute row_span.
Instance Method Summary collapse
-
#initialize ⇒ TableCell
constructor
A new instance of TableCell.
Constructor Details
#initialize ⇒ TableCell
Returns a new instance of TableCell.
1693 |
# File 'sig/types.rbs', line 1693
def initialize: (?content: String, ?row_span: Integer, ?col_span: Integer, ?is_header: bool) -> void
|
Instance Attribute Details
#col_span ⇒ Integer?
Returns the value of attribute col_span.
1690 1691 1692 |
# File 'sig/types.rbs', line 1690 def col_span @col_span end |
#content ⇒ String?
Returns the value of attribute content.
1688 1689 1690 |
# File 'sig/types.rbs', line 1688 def content @content end |
#is_header ⇒ Boolean?
Returns the value of attribute is_header.
1691 1692 1693 |
# File 'sig/types.rbs', line 1691 def is_header @is_header end |
#row_span ⇒ Integer?
Returns the value of attribute row_span.
1689 1690 1691 |
# File 'sig/types.rbs', line 1689 def row_span @row_span end |