Example: Visible property

This example gets the visible property of the first sheet.

  Sheets sheets = spreadsheet.getSheets();
  Sheet sheet = sheets.item(1);
  boolean visible = sheet.isVisible();

Related information

Visible property