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]])


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

Returns the value of attribute cell_count.

Returns:

  • (Integer)


1078
1079
1080
# File 'sig/types.rbs', line 1078

def cell_count
  @cell_count
end

#col_countInteger (readonly)

Returns the value of attribute col_count.

Returns:

  • (Integer)


1077
1078
1079
# File 'sig/types.rbs', line 1077

def col_count
  @col_count
end

#markdownString (readonly)

Returns the value of attribute markdown.

Returns:

  • (String)


1075
1076
1077
# File 'sig/types.rbs', line 1075

def markdown
  @markdown
end

#nameString (readonly)

Returns the value of attribute name.

Returns:

  • (String)


1074
1075
1076
# File 'sig/types.rbs', line 1074

def name
  @name
end

#row_countInteger (readonly)

Returns the value of attribute row_count.

Returns:

  • (Integer)


1076
1077
1078
# File 'sig/types.rbs', line 1076

def row_count
  @row_count
end

#table_cellsArray[Array[String]] (readonly)

Returns the value of attribute table_cells.

Returns:

  • (Array[Array[String]])


1079
1080
1081
# File 'sig/types.rbs', line 1079

def table_cells
  @table_cells
end