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