This example sets the edit area of the spreadsheet to be invisible.
try { Application application = Application.getInstance(); Spreadsheets spreadsheets = application.getSpreadsheets(); Spreadsheet spreadsheet = spreadsheets.openSpreadsheet("D:\\test.ods", true); spreadsheet.setEditAreaVisible(false); } catch(Exception e) { e.printStackTrace(); }
Related information