使用AppleScript,如何将“A3到E3范围内的单元格”的背景颜色更改为浅灰色?
我仍然希望字体为黑色。
答案 0 :(得分:3)
这个答案有两点需要注意:您没有指定哪个版本的Excel,以及在v2004中测试了以下内容。
tell application "Microsoft Excel"
set theRange to range "A3:E3"
set interiorObject to interior object of theRange
set color index of interiorObject to 5 -- '5' is only a dummy value; change as needed.
end tell
根据字典,color index
是“颜色被指定为当前调色板的索引值”。换句话说,安装中浅灰色的颜色索引可能在其他地方有所不同。