Method: Excelx#excelx_value

Defined in:
lib/roo/excelx.rb

#excelx_value(row, col, sheet = nil) ⇒ Object

returns the internal value of an excelx cell Note: this is only available within the Excelx class



305
306
307
308
309
310
# File 'lib/roo/excelx.rb', line 305

def excelx_value(row,col,sheet=nil)
  sheet = @default_sheet unless sheet
  read_cells(sheet) unless @cells_read[sheet]
  row,col = normalize(row,col)
  return @excelx_value[sheet][[row,col]]
end