Class: Xberg::TableGrid
- Inherits:
-
Object
- Object
- Xberg::TableGrid
- Defined in:
- sig/types.rbs
Instance Attribute Summary collapse
-
#cells ⇒ Array[GridCell]?
Returns the value of attribute cells.
-
#cols ⇒ Integer?
Returns the value of attribute cols.
-
#rows ⇒ Integer?
Returns the value of attribute rows.
Instance Method Summary collapse
-
#initialize ⇒ TableGrid
constructor
A new instance of TableGrid.
Constructor Details
#initialize ⇒ TableGrid
Returns a new instance of TableGrid.
854 |
# File 'sig/types.rbs', line 854
def initialize: (?rows: Integer, ?cols: Integer, ?cells: Array[GridCell]) -> void
|
Instance Attribute Details
#cells ⇒ Array[GridCell]?
Returns the value of attribute cells.
852 853 854 |
# File 'sig/types.rbs', line 852 def cells @cells end |
#cols ⇒ Integer?
Returns the value of attribute cols.
851 852 853 |
# File 'sig/types.rbs', line 851 def cols @cols end |
#rows ⇒ Integer?
Returns the value of attribute rows.
850 851 852 |
# File 'sig/types.rbs', line 850 def rows @rows end |