Property Getters/Setters Summary | ||
---|---|---|
function | getEndColumn() | |
The end column of the area.
|
||
function | getEndRow() | |
The end row of the area.
|
||
function | getExternalFileName() | |
Get the external file name if this is an external reference.
|
||
function | isArea() | |
Indicates whether this is an area.
|
||
function | isEntireColumn() | |
Indicates whether this area contains all rows(entire column).
|
||
function | isEntireRow() | |
Indicates whether this area contains all columns(entire row).
|
||
function | isExternalLink() | |
Indicates whether this is an external link.
|
||
function | getSheetName() | |
Indicates which sheet this reference is in.
|
||
function | getStartColumn() | |
The start column of the area.
|
||
function | getStartRow() | |
The start row of the area.
|
Method Summary | ||
---|---|---|
function | getValue(rowOffset, colOffset) | |
Gets cell value with given offset from the top-left of this area.
|
||
function | getValue(rowOffset, colOffset, calculateFormulas) | |
Gets cell value with given offset from the top-left of this area.
|
||
function | getValues() | |
Gets cell values in this area.
|
||
function | getValues(calculateFormulas) | |
Gets cell values in this area.
|
||
function | toString() | |
Returns the reference address of this area.
Generally it is the address of the reference which may be used in formula, such as "Sheet1!A1:C3".
|
function isExternalLink()
function getExternalFileName()
function getSheetName()
function isEntireRow()
function isEntireColumn()
function isArea()
function getEndColumn()
function getStartColumn()
function getEndRow()
function getStartRow()
function getValues()
function getValues(calculateFormulas)
calculateFormulas: boolean
- In this range, if there are some formulas that have not been calculated,
this flag denotes whether those formulas should be calculated recursivelyfunction getValue(rowOffset, colOffset)
rowOffset: Number
- row offset from the start row of this areacolOffset: Number
- column offset from the start row of this areafunction getValue(rowOffset, colOffset, calculateFormulas)
rowOffset: Number
- row offset from the start row of this areacolOffset: Number
- column offset from the start row of this areacalculateFormulas: boolean
- Whether calculate it recursively if the specified reference is formulafunction toString()