Modifier and Type | Method and Description |
---|---|
Range |
Range.getCell(int row,
int column)
Get a specific cell of this Range using relative coords
for example, (0,0) would be the first cell of this range
|
Range |
Sheet.getDataRange()
Get a @Range which contains the whole Sheet content.
|
Range[] |
Range.getMergedCells()
Returns an array of Range objects representing merged cells that either
are fully within the current range, or contain at least one cell in the current range.
|
Range |
Sheet.getRange(int row,
int column)
Obtains a @Range which contains a specific cell of the sheet
|
Range |
Sheet.getRange(int row,
int column,
int numRows)
Obtains a @Range which represents a number of rows starting
in a specific Cell.
|
Range |
Sheet.getRange(int row,
int column,
int numRows,
int numColumns)
Obtains a @Range which represents a subset of the Sheet.
|
Range |
Sheet.getRange(String a1Notation)
Obtains a @Range using the A1 Notation format.
|
Modifier and Type | Method and Description |
---|---|
void |
Range.copyTo(Range dest)
Copy the content of this range to another,
this include values and formatting
|
Copyright © 2023. All rights reserved.