🍄Range
Google Apps Script class for Google Sheet
Range 的位置資訊:
getRow() - starting row index.
getColumn() - starting column index.
getNumRows() - number of rows.
getNumColumns() - number of columns.
選取 Range:
💾 sheet.rangeByRect() - 簡化 Range 的選取。
range.offset() - 如果位移的量沒有設好,會出現類似以下錯誤: ⛔ Exception: The starting row of the range is too small.
設定儲存格公式:
合併儲存格:
水平合併:mergeAcross() (如果有好幾列,每列會分別合併)
垂直合併:mergeVertically()
設定字體:
字體顏色:setFontColor(), setFontColors(), setFontColorObject(), ...
字體大小:setFontSize()
字體粗細:setFontWeight()
同一個儲存格內設定不同的字體: range.setRichTextValue() ⭐️
設定顏色:
儲存格背景色:setBackground()
Last updated
Was this helpful?