Class: HtmlToMarkdown::GridCell
- Inherits:
-
Object
- Object
- HtmlToMarkdown::GridCell
- Defined in:
- sig/types.rbs
Instance Attribute Summary collapse
-
#col ⇒ Integer
readonly
Returns the value of attribute col.
-
#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 ⇒ Integer
readonly
Returns the value of attribute row.
-
#row_span ⇒ Integer
readonly
Returns the value of attribute row_span.
Instance Method Summary collapse
-
#initialize ⇒ GridCell
constructor
A new instance of GridCell.
Constructor Details
#initialize ⇒ GridCell
Returns a new instance of GridCell.
263 |
# File 'sig/types.rbs', line 263
def initialize: (content: String, row: Integer, col: Integer, row_span: Integer, col_span: Integer, is_header: bool) -> void
|
Instance Attribute Details
#col ⇒ Integer (readonly)
Returns the value of attribute col.
258 259 260 |
# File 'sig/types.rbs', line 258 def col @col end |
#col_span ⇒ Integer (readonly)
Returns the value of attribute col_span.
260 261 262 |
# File 'sig/types.rbs', line 260 def col_span @col_span end |
#content ⇒ String (readonly)
Returns the value of attribute content.
256 257 258 |
# File 'sig/types.rbs', line 256 def content @content end |
#is_header ⇒ Boolean (readonly)
Returns the value of attribute is_header.
261 262 263 |
# File 'sig/types.rbs', line 261 def is_header @is_header end |
#row ⇒ Integer (readonly)
Returns the value of attribute row.
257 258 259 |
# File 'sig/types.rbs', line 257 def row @row end |
#row_span ⇒ Integer (readonly)
Returns the value of attribute row_span.
259 260 261 |
# File 'sig/types.rbs', line 259 def row_span @row_span end |