Lines Matching refs:sheet
34 import com.sun.star.sheet.XSpreadsheet;
35 import com.sun.star.sheet.XSpreadsheetDocument;
36 import com.sun.star.sheet.XSpreadsheets;
76 XSpreadsheet sheet = (XSpreadsheet) UnoRuntime.queryInterface(XSpreadsheet.class, sheetObj); in testInsertDeleteRows() local
77 …umnRowRange xCRRange = (XColumnRowRange) UnoRuntime.queryInterface( XColumnRowRange.class, sheet ); in testInsertDeleteRows()
83 sheet.getCellByPosition( 0, nRow ).setValue( nRow ); in testInsertDeleteRows()
91 XCell cell = sheet.getCellByPosition(0, 2); in testInsertDeleteRows()
101 XCell cellA3 = sheet.getCellByPosition(0, 2); in testInsertDeleteRows()
102 XCell cellA4 = sheet.getCellByPosition(0, 3); in testInsertDeleteRows()
122 XSpreadsheet sheet = (XSpreadsheet) UnoRuntime.queryInterface(XSpreadsheet.class, sheetObj); in testInsertDeleteColumns() local
123 …umnRowRange xCRRange = (XColumnRowRange) UnoRuntime.queryInterface( XColumnRowRange.class, sheet ); in testInsertDeleteColumns()
129 sheet.getCellByPosition( 1, nRow ).setValue( nRow ); in testInsertDeleteColumns()
137 XCell cell = sheet.getCellByPosition(2, 1); in testInsertDeleteColumns()
147 XCell cellA3 = sheet.getCellByPosition(1, 2); in testInsertDeleteColumns()
148 XCell cellA4 = sheet.getCellByPosition(1, 3); in testInsertDeleteColumns()