FixView.bsh 1.4 KB

12345678910111213141516171819202122232425262728293031323334
  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.XSpreadsheet;
  12. import com.sun.star.sheet.XSpreadsheets;
  13. import com.sun.star.container.XIndexAccess;
  14. import com.sun.star.sheet.XViewFreezable;
  15. import com.sun.star.sheet.XViewPane;
  16. oDoc = UnoRuntime.queryInterface(XModel.class,XSCRIPTCONTEXT.getInvocationContext());
  17. if ( oDoc == null )
  18. oDoc = XSCRIPTCONTEXT.getDocument();
  19. XSpreadsheetDocument xDoc = (XSpreadsheetDocument) UnoRuntime.queryInterface(XSpreadsheetDocument.class,oDoc);
  20. XSpreadsheets xSheets = xDoc.getSheets();
  21. XIndexAccess xSheetsIA = UnoRuntime.queryInterface(XIndexAccess.class, xSheets);
  22. XSpreadsheet xSheet = UnoRuntime.queryInterface(com.sun.star.sheet.XSpreadsheet.class, xSheetsIA.getByIndex(0));
  23. XViewFreezable xFreeze = UnoRuntime.queryInterface(XViewFreezable.class, oDoc.getCurrentController() );
  24. xFreeze.freezeAtPosition(2, 3);
  25. XViewPane xViewPane = UnoRuntime.queryInterface(XViewPane.class, oDoc.getCurrentController() );
  26. xViewPane.setFirstVisibleColumn(12);
  27. xViewPane.setFirstVisibleRow(149);
  28. return 0;