0

我想获取 Excel 工作表单元格的背景颜色。我已经尝试过以下方法:

begin; require 'rubygems'; rescue LoadError; end
require 'appscript'
f = MacTypes::Alias.path(File.join(File.dirname(__FILE__), "planning.xls"))
excel = Appscript.app("Microsoft Excel")
excel.activate
excel.open f

w1 = excel.worksheets[1]

1.upto(10) do |i|
  1.upto(10) do |j|
    cell = w1.rows[i].cells[j]
    print cell.value.get.to_s + " (#{cell.style_object.interior_object.pattern_color.get})"
  end
  puts ""
end

不幸的是,我只得到单元格值,我似乎找不到应该给我背景颜色的方法。

4

1 回答 1

2

这是给出背景颜色的值:

cell.interior_object.color.get
于 2009-07-13T11:19:54.967 回答