Example: Spreadsheets property

This example shows how to open a spreadsheet in visible mode.

 try {
  Application application = Application.getInstance();
  Spreadsheets spreadsheets = application.getSpreadsheets();
  Spreadsheet Spreadsheet = spreadsheets.openSpreadsheet("D:\\test.ods", true);
 } catch(Exception e) {
   e.printStackTrace();
 }

Related information

Spreadsheets property