InsertSheet.bsh 891 B

12345678910111213141516171819202122232425
  1. /*
  2. * This file is part of the LibreOffice project.
  3. *
  4. * This Source Code Form is subject to the terms of the Mozilla Public
  5. * License, v. 2.0. If a copy of the MPL was not distributed with this
  6. * file, You can obtain one at http://mozilla.org/MPL/2.0/.
  7. */
  8. import com.sun.star.uno.UnoRuntime;
  9. import com.sun.star.frame.XModel;
  10. import com.sun.star.sheet.XSpreadsheetDocument;
  11. import com.sun.star.sheet.XSpreadsheets;
  12. import com.sun.star.lang.XMultiServiceFactory;
  13. oDoc = UnoRuntime.queryInterface(XModel.class,XSCRIPTCONTEXT.getInvocationContext());
  14. if ( oDoc == null )
  15. oDoc = XSCRIPTCONTEXT.getDocument();
  16. XSpreadsheetDocument xDoc = (XSpreadsheetDocument) UnoRuntime.queryInterface(XSpreadsheetDocument.class,oDoc);
  17. XSpreadsheets xSheets = xDoc.getSheets();
  18. xSheets.insertNewByName("First new sheet", (short)0);
  19. xSheets.insertNewByName("Second new sheet", (short)1);
  20. return 0;