AppleScript: set Microsoft Excel cell's backgr

2019-07-19 22:40发布

Using AppleScript, how can I change the background color of "cells ranging from A3 to E3" to light grey?

I still want the font to be in black.

1条回答
聊天终结者
2楼-- · 2019-07-19 23:45

Two caveats with this answer: You didn't specify which version of Excel, and the following was tested in 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

Per the dictionary, color index is "the color is specified as an index value into the current color palette". In other words, the color index that is light gray in your install maybe different elsewhere.

查看更多
登录 后发表回答