“Setborder Google Script” Kode Jawaban

Setborder Google Script

var ss = SpreadsheetApp.getActiveSpreadsheet();
var sheet = ss.getSheets()[0];

var cell = sheet.getRange("B2");
// Sets borders on the top and bottom, but leaves the left and right unchanged
// Also sets the color to "red", and the border to "DASHED".
cell.setBorder(true, null, true, null, false, false, "red", SpreadsheetApp.BorderStyle.DASHED);
//.setBorder(top, left, bottom, right, vertical, horizontal, color, style)
Nervous Nightingale

setValues ​​()

var ss = SpreadsheetApp.getActiveSpreadsheet();
var sheet = ss.getSheets()[0];

// The size of the two-dimensional array must match the size of the range.
var values = [
  [ "2.000", "1,000,000", "$2.99" ]
];

var range = sheet.getRange("A1:C1");
range.setValues(values);
Nervous Nightingale

Jawaban yang mirip dengan “Setborder Google Script”

Pertanyaan yang mirip dengan “Setborder Google Script”

Jelajahi jawaban kode populer menurut bahasa

Jelajahi bahasa kode lainnya