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.
1704 |
# File 'sig/types.rbs', line 1704
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.
1701 1702 1703 |
# File 'sig/types.rbs', line 1701 def col_span @col_span end |
#content ⇒ String?
Returns the value of attribute content.
1699 1700 1701 |
# File 'sig/types.rbs', line 1699 def content @content end |
#is_header ⇒ Boolean?
Returns the value of attribute is_header.
1702 1703 1704 |
# File 'sig/types.rbs', line 1702 def is_header @is_header end |
#row_span ⇒ Integer?
Returns the value of attribute row_span.
1700 1701 1702 |
# File 'sig/types.rbs', line 1700 def row_span @row_span end |