Class: Xberg::TableCell
- Inherits:
-
Object
- Object
- Xberg::TableCell
- Defined in:
- sig/types.rbs
Instance Attribute Summary collapse
-
#col_span ⇒ Integer
readonly
Returns the value of attribute col_span.
-
#content ⇒ String
readonly
Returns the value of attribute content.
-
#is_header ⇒ Boolean
readonly
Returns the value of attribute is_header.
-
#row_span ⇒ Integer
readonly
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.
2488 |
# File 'sig/types.rbs', line 2488
def initialize: (?content: String, ?row_span: Integer, ?col_span: Integer, ?is_header: bool) -> void
|
Instance Attribute Details
#col_span ⇒ Integer (readonly)
Returns the value of attribute col_span.
2485 2486 2487 |
# File 'sig/types.rbs', line 2485 def col_span @col_span end |
#content ⇒ String (readonly)
Returns the value of attribute content.
2483 2484 2485 |
# File 'sig/types.rbs', line 2483 def content @content end |
#is_header ⇒ Boolean (readonly)
Returns the value of attribute is_header.
2486 2487 2488 |
# File 'sig/types.rbs', line 2486 def is_header @is_header end |
#row_span ⇒ Integer (readonly)
Returns the value of attribute row_span.
2484 2485 2486 |
# File 'sig/types.rbs', line 2484 def row_span @row_span end |