“Google Script obtenga el tamaño de la hoja” Código de respuesta

Las hojas de Google obtienen rangos

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

Google Script obtenga el tamaño de la hoja

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

Respuestas similares a “Google Script obtenga el tamaño de la hoja”

Preguntas similares a “Google Script obtenga el tamaño de la hoja”

Más respuestas relacionadas con “Google Script obtenga el tamaño de la hoja” en JavaScript

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código