| Package | Description |
|---|---|
| eu.easyrpa.openframework.google.sheets |
Objects model representing Google Spreadsheet and functionality to work with it via Google Sheets API.
|
| Modifier and Type | Method and Description |
|---|---|
Sheet |
Sheet.cloneAs(String clonedSheetName)
Clones this sheet and place it to the end of Spreadsheet document.
|
Sheet |
Sheet.copyTo(SpreadsheetDocument destDoc)
Copies the content of this sheet to another sheet with the same format.
|
Sheet |
SpreadsheetDocument.createSheet(String sheetName)
Creates a new sheet for this Spreadsheet document and return the high level
representation.
|
Sheet |
SpreadsheetDocument.findSheet(MatchMethod matchMethod,
String... values)
Finds the sheet with a row that contains all given values and active it.
|
Sheet |
SpreadsheetDocument.findSheet(String... values)
Finds the sheet with a row that contains all given values and active it.
|
Sheet |
SpreadsheetDocument.getActiveSheet()
Gets current active sheet.
|
Sheet |
Row.getSheet()
Gets parent sheet.
|
Sheet |
Table.getSheet()
Gets parent sheet.
|
Sheet |
Cell.getSheet()
Gets parent sheet.
|
Sheet |
Column.getSheet()
Gets parent sheet.
|
Sheet |
SpreadsheetDocument.selectSheet(int index)
Sets the sheet with given index as active and return it.
|
Sheet |
SpreadsheetDocument.selectSheet(String sheetName)
Sets the sheet with given name as active and return it.
|
| Modifier and Type | Method and Description |
|---|---|
Iterator<Sheet> |
SpreadsheetDocument.iterator() |
| Modifier and Type | Method and Description |
|---|---|
void |
SpreadsheetDocument.removeSheet(Sheet sheet)
Removes given sheet.
|
| Constructor and Description |
|---|
Cell(Sheet parent,
int rowIndex,
int columnIndex)
Creates a new instance of cell.
|
Column(Sheet parent,
int columnIndex)
Creates a new instance of column.
|
Row(Sheet parent,
int rowIndex)
Creates a new instance of row.
|
Table(Sheet parent,
int headerTopRow,
int headerLeftCol,
int headerBottomRow,
int headerRightCol,
Class<T> recordType)
Creates a new instance of table that is defined by existing cells range on specified sheet.
|
Table(Sheet parent,
int topRow,
int leftCol,
List<T> records)
Builds a new table on the given sheet at position defined by
topRow and leftCol
(top-left cell of the table). |
Copyright © 2022. All rights reserved.