Lines Matching refs:sheet

51     private com.sun.star.sheet.XSpreadsheetDocument mxDocument;
93 public com.sun.star.sheet.XSpreadsheetDocument getDocument() in getDocument()
101 public com.sun.star.sheet.XSpreadsheet getSpreadsheet( int nIndex ) in getSpreadsheet()
104 com.sun.star.sheet.XSpreadsheets xSheets = mxDocument.getSheets(); in getSpreadsheet()
105 com.sun.star.sheet.XSpreadsheet xSheet = null; in getSpreadsheet()
111 xSheet = (com.sun.star.sheet.XSpreadsheet) UnoRuntime.queryInterface( in getSpreadsheet()
112 com.sun.star.sheet.XSpreadsheet.class, xSheetsIA.getByIndex(nIndex)); in getSpreadsheet()
127 public com.sun.star.sheet.XSpreadsheet insertSpreadsheet( in insertSpreadsheet()
131 com.sun.star.sheet.XSpreadsheets xSheets = mxDocument.getSheets(); in insertSpreadsheet()
132 com.sun.star.sheet.XSpreadsheet xSheet = null; in insertSpreadsheet()
136 xSheet = (com.sun.star.sheet.XSpreadsheet) in insertSpreadsheet()
137 UnoRuntime.queryInterface(com.sun.star.sheet.XSpreadsheet.class, in insertSpreadsheet()
157 com.sun.star.sheet.XSpreadsheet xSheet, in setValue()
169 com.sun.star.sheet.XSpreadsheet xSheet, in setFormula()
183 com.sun.star.sheet.XSpreadsheet xSheet, in setDate()
213 com.sun.star.sheet.XSpreadsheet xSheet, in prepareRange()
234 com.sun.star.sheet.XCellRangeAddressable xAddr = (com.sun.star.sheet.XCellRangeAddressable) in prepareRange()
235 UnoRuntime.queryInterface( com.sun.star.sheet.XCellRangeAddressable.class, xCellRange ); in prepareRange()
260 com.sun.star.sheet.XSpreadsheet xSheet, in createCellAddress()
263 com.sun.star.sheet.XCellAddressable xAddr = (com.sun.star.sheet.XCellAddressable) in createCellAddress()
264 UnoRuntime.queryInterface( com.sun.star.sheet.XCellAddressable.class, in createCellAddress()
274 com.sun.star.sheet.XSpreadsheet xSheet, String aRange ) in createCellRangeAddress()
276 com.sun.star.sheet.XCellRangeAddressable xAddr = (com.sun.star.sheet.XCellRangeAddressable) in createCellRangeAddress()
277 UnoRuntime.queryInterface( com.sun.star.sheet.XCellRangeAddressable.class, in createCellRangeAddress()
316 com.sun.star.sheet.XSheetCellRange xCellRange, in getCellRangeAddressString()
322 com.sun.star.sheet.XSpreadsheet xSheet = xCellRange.getSpreadsheet(); in getCellRangeAddressString()
327 com.sun.star.sheet.XCellRangeAddressable xAddr = (com.sun.star.sheet.XCellRangeAddressable) in getCellRangeAddressString()
328 UnoRuntime.queryInterface( com.sun.star.sheet.XCellRangeAddressable.class, xCellRange ); in getCellRangeAddressString()
346 com.sun.star.sheet.XSheetCellRange xCellRange = (com.sun.star.sheet.XSheetCellRange) in getCellRangeListString()
347 UnoRuntime.queryInterface( com.sun.star.sheet.XSheetCellRange.class, aRangeObj ); in getCellRangeListString()
376 private com.sun.star.sheet.XSpreadsheetDocument initDocument() in initDocument()
389 return (com.sun.star.sheet.XSpreadsheetDocument)UnoRuntime.queryInterface( in initDocument()
390 com.sun.star.sheet.XSpreadsheetDocument.class, xComponent ); in initDocument()