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.
884 |
# File 'sig/types.rbs', line 884
def initialize: (?rows: Integer, ?cols: Integer, ?cells: Array[GridCell]) -> void
|
Instance Attribute Details
#cells ⇒ Array[GridCell]?
Returns the value of attribute cells.
882 883 884 |
# File 'sig/types.rbs', line 882 def cells @cells end |
#cols ⇒ Integer?
Returns the value of attribute cols.
881 882 883 |
# File 'sig/types.rbs', line 881 def cols @cols end |
#rows ⇒ Integer?
Returns the value of attribute rows.
880 881 882 |
# File 'sig/types.rbs', line 880 def rows @rows end |