私が使用してNumbersスプレッドシートでセルの書式を設定することができます。AppleScriptを使用して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
しかし、どのように私は、セルの小数点以下の桁数を設定するのですか?