Class: Xberg::ExcelSheet
- Inherits:
-
Object
- Object
- Xberg::ExcelSheet
- Defined in:
- sig/types.rbs
Instance Attribute Summary collapse
-
#cell_count ⇒ Integer
readonly
Returns the value of attribute cell_count.
-
#col_count ⇒ Integer
readonly
Returns the value of attribute col_count.
-
#markdown ⇒ String
readonly
Returns the value of attribute markdown.
-
#name ⇒ String
readonly
Returns the value of attribute name.
-
#row_count ⇒ Integer
readonly
Returns the value of attribute row_count.
-
#table_cells ⇒ Array[Array[String]]
readonly
Returns the value of attribute table_cells.
Instance Method Summary collapse
-
#initialize ⇒ ExcelSheet
constructor
A new instance of ExcelSheet.
Constructor Details
#initialize ⇒ ExcelSheet
Returns a new instance of ExcelSheet.
1081 |
# File 'sig/types.rbs', line 1081
def initialize: (name: String, markdown: String, row_count: Integer, col_count: Integer, cell_count: Integer, ?table_cells: Array[Array[String]]) -> void
|
Instance Attribute Details
#cell_count ⇒ Integer (readonly)
Returns the value of attribute cell_count.
1078 1079 1080 |
# File 'sig/types.rbs', line 1078 def cell_count @cell_count end |
#col_count ⇒ Integer (readonly)
Returns the value of attribute col_count.
1077 1078 1079 |
# File 'sig/types.rbs', line 1077 def col_count @col_count end |
#markdown ⇒ String (readonly)
Returns the value of attribute markdown.
1075 1076 1077 |
# File 'sig/types.rbs', line 1075 def markdown @markdown end |
#name ⇒ String (readonly)
Returns the value of attribute name.
1074 1075 1076 |
# File 'sig/types.rbs', line 1074 def name @name end |
#row_count ⇒ Integer (readonly)
Returns the value of attribute row_count.
1076 1077 1078 |
# File 'sig/types.rbs', line 1076 def row_count @row_count end |
#table_cells ⇒ Array[Array[String]] (readonly)
Returns the value of attribute table_cells.
1079 1080 1081 |
# File 'sig/types.rbs', line 1079 def table_cells @table_cells end |