app.sheet.prototype
GAS โฉ app โฉ prototypes โฉ sheet.prototype
getting Range
sheet.range()
๐พ sheet.rangeByRect() - ็จ RangeRect ไพ้ธ Range
sheet.rangeListByRects()
formatting Range
/**
* write 2D data into sheet.
*
* @example
* sheet.__proto__ = app.sheet.prototype
* sheet.setValues(data)
*/
app.sheet.prototype = {
// ๐ธ sheet.setValues(data)
setValues(data, row=1, col=1){
// โฌ๏ธ require: Array.prototype.isMatrix (getter)
if(!data.isMatrix)
throw new Error(`โ๏ธ app.sheet.prototype.setValues(): data ่ณๆๆ ผๅผๆๅ้ก๏ผ็กๆณๅฏซๅ
ฅ่ฉฆ็ฎ่กจโ๏ธ`);
// ่ณๆ่กจ็ใๅๆธใ่ใๆฌๆธใ
let rows = data.length;
let cols = data[0].length;
// ๅฏซๅ
ฅ้ ้ข
this
.getRange(row, col, rows, cols)
.setValues(data);
return this; // for chaining
},
// โโโโโโโโโโโโโโโโโโ
// โ getting Range โ
// โโโโโโโโโโโโโโโโโโ
// ๐ธ sheet.range()
range(row, col, rows, cols){
const rng = this.getRange(row, col, rows, cols);
Object.setPrototypeOf(rng, app.range.prototype); // extend range
return rng;
},
// ๐ธ sheet.rangeByRect(rect: RangeRect)
// require: RangeRect
rangeByRect(rect){
const range = this.getRange(...rect.toArray());
range.__proto__ = app.range.prototype; // extend range
return range;
},
// ๐ธ sheet.rangeListByRects(rects: [RangeRect])
// require: RangeRect
rangeListByRects(rects){
const alNotations = rects.map(rect => this.rangeByRect(rect).getA1Notation());
return this.getRangeList(alNotations);
},
// โโโโโโโโโโโโโโโโโโโโโโ
// โ formatting Ranges โ
// โโโโโโโโโโโโโโโโโโโโโโ
// ๐ธ sheet.appendConditionalFormatRule()
appendConditionalFormatRule(rule){
var rules = this.getConditionalFormatRules();
rules.push(rule);
this.setConditionalFormatRules(rules);
},
};
Range โฉ
getA1Notation() - ๅๅณ้กไผผ
"A1:E2"
็ๅญไธฒใ
ConditionalFormatRule - sheet can append conditional format rules.
ๅ็ญๅนณๅๅๅไธๅ - ้็จ
sheet.setValues()
ๅกซๅ็ญๅนณๅใๅไธๅ่กจๆ ผใapp.sheetByName() - ่ฎๅๅณ็ Sheet ็ดๆฅๆๆๅคๆใ
Last updated
Was this helpful?