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.
1821 |
# File 'sig/types.rbs', line 1821
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.
1818 1819 1820 |
# File 'sig/types.rbs', line 1818 def col_span @col_span end |
#content ⇒ String?
Returns the value of attribute content.
1816 1817 1818 |
# File 'sig/types.rbs', line 1816 def content @content end |
#is_header ⇒ Boolean?
Returns the value of attribute is_header.
1819 1820 1821 |
# File 'sig/types.rbs', line 1819 def is_header @is_header end |
#row_span ⇒ Integer?
Returns the value of attribute row_span.
1817 1818 1819 |
# File 'sig/types.rbs', line 1817 def row_span @row_span end |