public interface Worksheet
Modifier and Type | Method and Description |
---|---|
String |
getName()
Returns the sheet name.
|
Range |
getRange(int row,
int column)
Returns the range proxy with the given row and column.
|
Range |
getRange(int row,
int column,
int numRows,
int numColumns)
Returns the range proxy with the given row and column with the given number
of the rows and columns
|
Range |
getRange(String a1Notation)
Returns the range proxy with the given A1 notation or R1C1 notation.
|
Spreadsheet |
getSpreadsheet()
Returns the spreadsheet which holds this worksheet.
|
CompletableFuture<Workbook> |
loadWorkbook()
Returns the remote workbook which holds this worksheet.
|
void |
setVisible(String visibility)
Sets the visibility of this sheet.
|
Spreadsheet getSpreadsheet()
CompletableFuture<Workbook> loadWorkbook()
Range getRange(String a1Notation)
a1Notation
- Range getRange(int row, int column)
row
- the starting row index of the rangecolumn
- the starting column index of the range.Range getRange(int row, int column, int numRows, int numColumns)
row
- the starting row index of the rangecolumn
- the starting column index of the rangenumRows
- the number of the rowsnumColumns
- the number of the columnsvoid setVisible(String visibility)
visibility
- either 'visible', 'hidden', or 'veryHidden'String getName()
Copyright © 2017. All rights reserved.