Sheet.getRange(1,1,1,12) what does the numbers in bracket specify?

Viewed 245958
Sheet.getRange(1,1,1,12)

I cannot understand the arguments 1,1,1,12 . What is this - the sheet id or row or what?

method getRange(row, column, optNumRows, optNumColumns)

here what does optNumRows and optNumColumns mean???

2 Answers

I know this is an older thread but I thought a graphic might help see this visually.

getRange(row, column, optNumRows, optNumColumns)

enter image description here

Related