Class: Xberg::ExcelSheet

Inherits:
Object
  • Object
show all
Defined in:
sig/types.rbs

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initializeExcelSheet

Returns a new instance of ExcelSheet.

Parameters:

  • name: (String)
  • markdown: (String)
  • row_count: (Integer)
  • col_count: (Integer)
  • cell_count: (Integer)
  • table_cells: (Array[Array[String]])


1149
# File 'sig/types.rbs', line 1149

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_countInteger (readonly)

Returns the value of attribute cell_count.

Returns:

  • (Integer)


1146
1147
1148
# File 'sig/types.rbs', line 1146

def cell_count
  @cell_count
end

#col_countInteger (readonly)

Returns the value of attribute col_count.

Returns:

  • (Integer)


1145
1146
1147
# File 'sig/types.rbs', line 1145

def col_count
  @col_count
end

#markdownString (readonly)

Returns the value of attribute markdown.

Returns:

  • (String)


1143
1144
1145
# File 'sig/types.rbs', line 1143

def markdown
  @markdown
end

#nameString (readonly)

Returns the value of attribute name.

Returns:

  • (String)


1142
1143
1144
# File 'sig/types.rbs', line 1142

def name
  @name
end

#row_countInteger (readonly)

Returns the value of attribute row_count.

Returns:

  • (Integer)


1144
1145
1146
# File 'sig/types.rbs', line 1144

def row_count
  @row_count
end

#table_cellsArray[Array[String]] (readonly)

Returns the value of attribute table_cells.

Returns:

  • (Array[Array[String]])


1147
1148
1149
# File 'sig/types.rbs', line 1147

def table_cells
  @table_cells
end