Class: Anydoc::Cell
- Inherits:
-
Data
- Object
- Data
- Anydoc::Cell
- Defined in:
- lib/anydoc/document.rb,
sig/anydoc.rbs
Overview
A table cell and the extent it spans.
Instance Attribute Summary collapse
- #blocks ⇒ Array<Block> readonly
-
#col_span ⇒ Integer
readonly
Columns covered, at least 1.
-
#row_span ⇒ Integer
readonly
Rows covered, at least 1.
Instance Attribute Details
#blocks ⇒ Array<Block> (readonly)
193 194 |
# File 'lib/anydoc/document.rb', line 193 class Cell < Data.define(:blocks, :col_span, :row_span) end |
#col_span ⇒ Integer (readonly)
Returns columns covered, at least 1.
193 194 |
# File 'lib/anydoc/document.rb', line 193 class Cell < Data.define(:blocks, :col_span, :row_span) end |
#row_span ⇒ Integer (readonly)
Returns rows covered, at least 1.
193 194 |
# File 'lib/anydoc/document.rb', line 193 class Cell < Data.define(:blocks, :col_span, :row_span) end |