“Script do Google Obtenha o tamanho da folha” Respostas de código

As folhas do Google recebem faixas

//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
JasonXXR

Script do Google Obtenha o tamanho da folha

// This example assumes there is a sheet named "first"
var ss = SpreadsheetApp.getActiveSpreadsheet();
var first = ss.getSheetByName("first");
Logger.log(first.getMaxColumns());
// getMaxColumns() returns the current number of columns in the sheet,
// regardless of content.
Flyhouse_Squarewheel

Respostas semelhantes a “Script do Google Obtenha o tamanho da folha”

Perguntas semelhantes a “Script do Google Obtenha o tamanho da folha”

Mais respostas relacionadas para “Script do Google Obtenha o tamanho da folha” em JavaScript

Procure respostas de código populares por idioma

Procurar outros idiomas de código