AppleScript:设置 Microsoft Excel 单元格的背景颜色

发布于 2024-08-28 14:34:26 字数 69 浏览 0 评论 0原文

使用AppleScript,如何将“从A3到E3的单元格”的背景颜色更改为浅灰色?

我仍然希望字体是黑色的。

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.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

辞慾 2024-09-04 14:34:26

此答案有两个警告:您没有指定 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

根据字典,颜色索引是“颜色被指定为当前调色板的索引值”。换句话说,您安装的浅灰色颜色索引在其他地方可能会有所不同。

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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文