Lines Matching refs:xSpreadsheet

100 		XSpreadsheet xSpreadsheet =   in getSCSheetByName()  local
103 return xSpreadsheet; in getSCSheetByName()
117 XSpreadsheet xSpreadsheet = in getSCSheetByIndex() local
120 return xSpreadsheet; in getSCSheetByIndex()
138 XSpreadsheet xSpreadsheet = (XSpreadsheet) UnoRuntime.queryInterface( in getSCSheetNameByIndex() local
141 xSpreadsheet); in getSCSheetNameByIndex()
160 XSpreadsheet xSpreadsheet = (XSpreadsheet) UnoRuntime.queryInterface( in setSCSheetNameByIndex() local
163 xSpreadsheet); in setSCSheetNameByIndex()
173 public static XTableRows getSCRows(XSpreadsheet xSpreadsheet) throws Exception { in getSCRows() argument
175 (XColumnRowRange) UnoRuntime.queryInterface(XColumnRowRange.class, xSpreadsheet); in getSCRows()
187 public static XTableColumns getSCColumns(XSpreadsheet xSpreadsheet) throws Exception { in getSCColumns() argument
189 (XColumnRowRange) UnoRuntime.queryInterface(XColumnRowRange.class, xSpreadsheet); in getSCColumns()
203 …public static void setValueToCell(XSpreadsheet xSpreadsheet, int column, int row, double value) th… in setValueToCell() argument
204 XCell xCell = xSpreadsheet.getCellByPosition(column, row); in setValueToCell()
216 …public static void setTextToCell(XSpreadsheet xSpreadsheet, int column, int row, String text) thro… in setTextToCell() argument
217 XCell xCell = xSpreadsheet.getCellByPosition(column, row); in setTextToCell()
241 …public static void setFormulaToCell(XSpreadsheet xSpreadsheet, int column, int row, String formula… in setFormulaToCell() argument
242 XCell xCell = xSpreadsheet.getCellByPosition(column, row); in setFormulaToCell()
254 …public static double getValueFromCell(XSpreadsheet xSpreadsheet, int column, int row) throws Excep… in getValueFromCell() argument
255 XCell xCell = xSpreadsheet.getCellByPosition(column, row); in getValueFromCell()
270 …public static String getTextFromCell(XSpreadsheet xSpreadsheet, int column, int row) throws Except… in getTextFromCell() argument
271 XCell xCell = xSpreadsheet.getCellByPosition(column, row); in getTextFromCell()
285 …public static String getFormulaFromCell(XSpreadsheet xSpreadsheet, int column, int row) throws Exc… in getFormulaFromCell() argument
286 XCell xCell = xSpreadsheet.getCellByPosition(column, row); in getFormulaFromCell()
303 …public static void setValueToCellRange(XSpreadsheet xSpreadsheet, int start_col, int start_row, in… in setValueToCellRange() argument
304 …XCellRange xCellRange = xSpreadsheet.getCellRangeByPosition(start_col, start_row, end_col, end_row… in setValueToCellRange()
314 …public static void setValueToCellRange(XSpreadsheet xSpreadsheet, int start_col, int start_row, do… in setValueToCellRange() argument
315 …XCellRange xCellRange = xSpreadsheet.getCellRangeByPosition(start_col, start_row, start_col + valu… in setValueToCellRange()
336 …public static void setTextToCellRange(XSpreadsheet xSpreadsheet, int start_col, int start_row, int… in setTextToCellRange() argument
337 …XCellRange xCellRange = xSpreadsheet.getCellRangeByPosition(start_col, start_row, end_col, end_row… in setTextToCellRange()
349 …public static void setTextToCellRange(XSpreadsheet xSpreadsheet, int start_col, int start_row, Str… in setTextToCellRange() argument
350 …XCellRange xCellRange = xSpreadsheet.getCellRangeByPosition(start_col, start_row, start_col + text… in setTextToCellRange()
372 …public static double[][] getValueFromCellRange(XSpreadsheet xSpreadsheet, int start_col, int start… in getValueFromCellRange() argument
373 …XCellRange xCellRange = xSpreadsheet.getCellRangeByPosition(start_col, start_row, end_col, end_row… in getValueFromCellRange()
397 …public static String[][] getTextFromCellRange(XSpreadsheet xSpreadsheet, int start_col, int start_… in getTextFromCellRange() argument
398 …XCellRange xCellRange = xSpreadsheet.getCellRangeByPosition(start_col, start_row, end_col, end_row… in getTextFromCellRange()
421 …tCurrentSheet(XSpreadsheetDocument xSpreadsheetDocument, XSpreadsheet xSpreadsheet) throws Excepti… in setCurrentSheet() argument
425 xSpreadsheetView.setActiveSheet(xSpreadsheet); in setCurrentSheet()
437 XSpreadsheet xSpreadsheet = xSpreadsheetView.getActiveSheet(); in getCurrentSheet() local
439 return xSpreadsheet; in getCurrentSheet()
624 …public static CellRangeAddress getChartDataRangeByName(XSpreadsheet xSpreadsheet, String rangeName… in getChartDataRangeByName() argument
625 XCellRange cellRange = xSpreadsheet.getCellRangeByName(rangeName); in getChartDataRangeByName()
642 …public static XChartDocument createChart(XSpreadsheet xSpreadsheet, Rectangle rec, CellRangeAddres… in createChart() argument
644 return createChart(xSpreadsheet, rec, dataRangeAddress, chartName, true, false); in createChart()
658 …public static XChartDocument createChart(XSpreadsheet xSpreadsheet, Rectangle rec, CellRangeAddres… in createChart() argument
661 (XTableChartsSupplier) UnoRuntime.queryInterface(XTableChartsSupplier.class, xSpreadsheet); in createChart()
686 …public static XChartDocument getChartByName(XSpreadsheet xSpreadsheet, String chartName) throws Ex… in getChartByName() argument
689 (XTableChartsSupplier) UnoRuntime.queryInterface(XTableChartsSupplier.class, xSpreadsheet); in getChartByName()
736 public static String[] getChartNameList(XSpreadsheet xSpreadsheet) throws Exception { in getChartNameList() argument
738 (XTableChartsSupplier) UnoRuntime.queryInterface(XTableChartsSupplier.class, xSpreadsheet); in getChartNameList()