class MergeExcel::Settings::ExtraColumn::CellValueExtraColumn

Constants

TYPE

Attributes

col_idx[R]
label[R]
row_idx[R]
sheet_idx[R]
type[R]

Public Class Methods

new(label, coordinates_hash) click to toggle source
# File lib/merge_excel/settings/extra_column.rb, line 18
def initialize(label, coordinates_hash)
  @label     = label
  @sheet_idx = coordinates_hash.fetch(:sheet_idx)
  @row_idx   = coordinates_hash.fetch(:row_idx)
  @col_idx   = coordinates_hash.fetch(:col_idx)
  @type      = :cell_value
end