API usage电子表格 APIEnumerationbyte本页总览byteAsk a question 0 到 255 之间的数值。 类型 number 示例 创建两个 RGB 颜色。 CodeResultPlayground// Create RGB colors using bytes in decimal and hexadecimal.// The resulting colors are green (decimal) and red (hexadecimal).let rgbColorGreen = Api.RGB(0, 255, 0);let rgbColorRed = Api.RGB(0xff, 0, 0);