gpt4 book ai didi

numbers - 如何使用 AppleScript 在 Numbers 单元格中设置小数位数?

转载 作者:行者123 更新时间:2023-12-04 18:32:35 27 4
gpt4 key购买 nike

我可以使用以下方法设置 Numbers 电子表格中单元格的格式:

tell application "Numbers"
activate
tell document 1
tell active sheet
set the selectedTable to ¬
(the first table whose class of selection range is range)
end tell
tell selectedTable
tell column "J"
set the format of cell 3 to number
end tell
end tell
end tell
end tell

但是如何设置单元格的小数位数?

最佳答案

不幸的是,我没有数字,所以我自己不能直接查看字典,但理论上你应该有一个小数位单元格的属性。

This页面讨论如何在应用程序中手动更改小数位。因此,您应该能够在脚本中执行类似操作是合乎情理的。

你有没有试过按照这些方式做一些事情......

tell application "Numbers"
tell document 1
tell selectedTable
tell column "J"
set props1 to properties of cell 3
set props2 to properties of format of cell 3
end tell
end tell
end tell
end tell

看一下前面的代码示例中 props1 和 props2 包含的内容。运气好的话,其中一个将引用“小数位”(或类似的东西)。很抱歉我的代码中有任何错误,正如我所提到的,我没有数字来实际测试其中的任何一个。

关于numbers - 如何使用 AppleScript 在 Numbers 单元格中设置小数位数?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38090496/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com