Roo gem: 单元格背景颜色

Roo gem: cell background color

我正在使用 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)

我仔细看了看,Roo 似乎没有提供任何自定义检查的高级功能。

所以我换了宝石。我现在正在使用 spreadsheet

spreadsheet = Spreadsheet.open(file_path)
sheet = spreadsheet.worksheet("278")
row = sheet.row(5)
background_color = row.format(5).pattern_bg_color