📜  谷歌表格获取范围 - Javascript代码示例

📅  最后修改于: 2022-03-11 15:01:48.606000             🧑  作者: Mango

代码示例1
//getRange(row, column, optNumRows, optNumColumns);
Sheet.getRange(1,1,1,12);

//row --- int --- top row of the range
//column --- int--- leftmost column of the range
//optNumRows --- int --- number of rows in the range.
//optNumColumns --- int --- number of columns in the range