Roo ruby gem を使用して xlsx ファイルを解析しています。
セルの背景色を取得する方法はありますか? コードを隅々まで調べましたが、それを行う方法が見つかりませんでした。
roo を使用してスプレッドシートを開くのは非常に簡単です。
spreadsheet = Roo::Excelx.new(file_path)
# Get me a sheet
sheet = spreadsheet.sheet("278")
# I happily thought excelx_format would return something that has
# to do with color, but it (sensibly) returns the cell format.
# In this case is GENERAL (no particular format)
puts sheet.excelx_format(6, 6)