This example gets a range that represents the fifth row.
Sheet sheet = sheets.item(1); Range oneRow = sheet.rows(5);
This example gets a range that represents the whole sheet.
Sheet sheet = sheets.item(1); Range sheetRange = sheet.rows();
Related information