| /trunk/main/odk/examples/java/Spreadsheet/ |
| H A D | SCalc.java | 159 XSpreadsheet xSheet=null; in main() local 166 xSheet = (XSpreadsheet) UnoRuntime.queryInterface( in main() 178 insertIntoCell(1,0,"JAN",xSheet,""); in main() 179 insertIntoCell(2,0,"FEB",xSheet,""); in main() 180 insertIntoCell(3,0,"MAR",xSheet,""); in main() 181 insertIntoCell(4,0,"APR",xSheet,""); in main() 182 insertIntoCell(5,0,"MAI",xSheet,""); in main() 183 insertIntoCell(6,0,"JUN",xSheet,""); in main() 184 insertIntoCell(7,0,"JUL",xSheet,""); in main() 185 insertIntoCell(8,0,"AUG",xSheet,""); in main() [all …]
|
| H A D | EuroAdaption.java | 94 com.sun.star.sheet.XSpreadsheet xSheet = null; in main() local 101 xSheet = (XSpreadsheet) UnoRuntime.queryInterface( in main() 116 createExampleData( xSheet, xNumberFormats ); in main() 120 Convert( xSheet, xNumberFormats, "DM", "EUR", 1.95583f ); in main() 131 public static void Convert( XSpreadsheet xSheet, XNumberFormats xNumberFormats, in Convert() argument 148 XCellFormatRangesSupplier.class, xSheet ); in Convert() 266 public static void createExampleData( XSpreadsheet xSheet, in createExampleData() argument 286 xCell = xSheet.getCellByPosition( 2, 1 + iCounter ); in createExampleData() 288 xCellRange = xSheet.getCellRangeByPosition( 2, 1 + iCounter, in createExampleData()
|
| /trunk/main/odk/examples/CLI/CSharp/Spreadsheet/ |
| H A D | SpreadsheetSample.cs | 75 unoidl.com.sun.star.sheet.XSpreadsheet xSheet = getSpreadsheet( 0 ); in doCellSamples() 79 prepareRange( xSheet, "A1:C7", "Cells and Cell Ranges" ); in doCellSamples() 82 xCell = xSheet.getCellByPosition( 1, 2 ); in doCellSamples() 167 (unoidl.com.sun.star.sheet.XSheetAnnotationsSupplier) xSheet; in doCellSamples() 186 unoidl.com.sun.star.sheet.XSpreadsheet xSheet = getSpreadsheet( 0 ); in doCellRangeSamples() 192 setFormula( xSheet, "B5", "First cell" ); in doCellRangeSamples() 193 setFormula( xSheet, "B6", "Second cell" ); in doCellRangeSamples() 195 xCellRange = xSheet.getCellRangeByPosition( 1, 4, 1, 5 ); in doCellRangeSamples() 229 xCellRange = xSheet.getCellRangeByName( "F3:G6" ); in doCellRangeSamples() 230 prepareRange( xSheet, "E1:H7", "XMergeable" ); in doCellRangeSamples() [all …]
|
| H A D | GeneralTableSample.cs | 62 unoidl.com.sun.star.sheet.XSpreadsheet xSheet = getSpreadsheet( 0 ); in doSampleFunction() 70 xCell = xSheet.getCellByPosition( 0, 0 ); in doSampleFunction() 76 xSheet.getCellByPosition( 0, 1 ).setValue( nDblValue ); in doSampleFunction() 79 xCell = xSheet.getCellByPosition( 0, 2 ); in doSampleFunction() 90 xCell = xSheet.getCellByPosition( 0, 3 ); in doSampleFunction() 108 xCellRange = xSheet.getCellRangeByPosition( 2, 0, 3, 1 ); in doSampleFunction() 116 xCellRange = xSheet.getCellRangeByName( "C4:D5" ); in doSampleFunction() 129 xCellRange = xSheet.getCellRangeByName( "A1" ); in doSampleFunction() 134 xSheet.createCursorByRange( xSheetCellRange ); in doSampleFunction() 151 (unoidl.com.sun.star.table.XColumnRowRange) xSheet; in doSampleFunction() [all …]
|
| H A D | SpreadsheetDocHelper.cs | 84 unoidl.com.sun.star.sheet.XSpreadsheet xSheet = in getSpreadsheet() 88 return xSheet; in getSpreadsheet() 103 unoidl.com.sun.star.sheet.XSpreadsheet xSheet = in insertSpreadsheet() 107 return xSheet; in insertSpreadsheet() 118 unoidl.com.sun.star.sheet.XSpreadsheet xSheet, in setValue() argument 122 xSheet.getCellRangeByName( aCellName ).getCellByPosition( in setValue() 131 unoidl.com.sun.star.sheet.XSpreadsheet xSheet, in setFormula() argument 135 xSheet.getCellRangeByName( aCellName ).getCellByPosition( in setFormula() 146 unoidl.com.sun.star.sheet.XSpreadsheet xSheet, in setDate() argument 152 xSheet.getCellRangeByName( aCellName ).getCellByPosition( 0, 0 ); in setDate() [all …]
|
| /trunk/main/odk/examples/DevelopersGuide/Spreadsheet/ |
| H A D | SpreadsheetSample.java | 195 com.sun.star.sheet.XSpreadsheet xSheet = getSpreadsheet( 0 ); in doCellSamples() local 199 prepareRange( xSheet, "A1:C7", "Cells and Cell Ranges" ); in doCellSamples() 202 xCell = xSheet.getCellByPosition( 1, 2 ); in doCellSamples() 282 com.sun.star.sheet.XSheetAnnotationsSupplier.class, xSheet ); in doCellSamples() 298 com.sun.star.sheet.XSpreadsheet xSheet = getSpreadsheet( 0 ); in doCellRangeSamples() local 305 setFormula( xSheet, "B5", "First cell" ); in doCellRangeSamples() 306 setFormula( xSheet, "B6", "Second cell" ); in doCellRangeSamples() 308 xCellRange = xSheet.getCellRangeByPosition( 1, 4, 1, 5 ); in doCellRangeSamples() 337 xCellRange = xSheet.getCellRangeByName( "F3:G6" ); in doCellRangeSamples() 338 prepareRange( xSheet, "E1:H7", "XMergeable" ); in doCellRangeSamples() [all …]
|
| H A D | SpreadsheetDocHelper.java | 105 com.sun.star.sheet.XSpreadsheet xSheet = null; in getSpreadsheet() local 111 xSheet = (com.sun.star.sheet.XSpreadsheet) UnoRuntime.queryInterface( in getSpreadsheet() 120 return xSheet; in getSpreadsheet() 132 com.sun.star.sheet.XSpreadsheet xSheet = null; in insertSpreadsheet() local 136 xSheet = (com.sun.star.sheet.XSpreadsheet) in insertSpreadsheet() 146 return xSheet; in insertSpreadsheet() 157 com.sun.star.sheet.XSpreadsheet xSheet, in setValue() argument 161 xSheet.getCellRangeByName( aCellName ).getCellByPosition( 0, 0 ).setValue( fValue ); in setValue() 169 com.sun.star.sheet.XSpreadsheet xSheet, in setFormula() argument 173 xSheet.getCellRangeByName( aCellName ).getCellByPosition( 0, 0 ).setFormula( aFormula ); in setFormula() [all …]
|
| H A D | GeneralTableSample.java | 62 com.sun.star.sheet.XSpreadsheet xSheet = getSpreadsheet( 0 ); in doSampleFunction() local 70 xCell = xSheet.getCellByPosition( 0, 0 ); in doSampleFunction() 76 xSheet.getCellByPosition( 0, 1 ).setValue( nDblValue ); in doSampleFunction() 79 xCell = xSheet.getCellByPosition( 0, 2 ); in doSampleFunction() 90 xCell = xSheet.getCellByPosition( 0, 3 ); in doSampleFunction() 107 xCellRange = xSheet.getCellRangeByPosition( 2, 0, 3, 1 ); in doSampleFunction() 115 xCellRange = xSheet.getCellRangeByName( "C4:D5" ); in doSampleFunction() 127 xCellRange = xSheet.getCellRangeByName( "A1" ); in doSampleFunction() 132 xSheet.createCursorByRange( xSheetCellRange ); in doSampleFunction() 147 UnoRuntime.queryInterface( com.sun.star.table.XColumnRowRange.class, xSheet ); in doSampleFunction() [all …]
|
| /trunk/test/testuno/source/fvt/uno/sc/cell/ |
| H A D | InsertDeleteCells.java | 89 … XSpreadsheet xSheet = (XSpreadsheet) UnoRuntime.queryInterface(XSpreadsheet.class, sheetObj); in testInsertCells() local 98 xSheet.getCellByPosition( nCol, nRow ).setValue( nValue ); in testInsertCells() 108 XCellRange xCellRange = xSheet.getCellRangeByPosition( 0, 1, 1, 1 ); in testInsertCells() 110 UnoRuntime.queryInterface(XCellRangeMovement.class, xSheet); in testInsertCells() 121 XCell cellA2 = xSheet.getCellByPosition(0, 1); in testInsertCells() 122 XCell cellB2 = xSheet.getCellByPosition(1, 1); in testInsertCells() 123 XCell cellC2 = xSheet.getCellByPosition(2, 1); in testInsertCells() 140 cellC2 = xSheet.getCellByPosition(2, 1); in testInsertCells() 141 XCell cellD2 = xSheet.getCellByPosition(3, 1); in testInsertCells() 142 XCell cellE2 = xSheet.getCellByPosition(4, 1); in testInsertCells() [all …]
|
| H A D | DeleteContents.java | 106 XSpreadsheet xSheet = SCUtil.getCurrentSheet(scDocument); in testDeleteContents() local 109 XCellRange xCellRange = xSheet.getCellRangeByPosition( 1, 4, 2, 14 ); in testDeleteContents() 113 XCell cellB5 = xSheet.getCellByPosition(1, 4); in testDeleteContents() 123 XCell cellB7 = xSheet.getCellByPosition(1, 6); in testDeleteContents() 132 XCell cellB8 = xSheet.getCellByPosition(1, 7); in testDeleteContents() 145 XSheetAnnotationsSupplier.class, xSheet); in testDeleteContents() 155 XCell cellB6 = xSheet.getCellByPosition(1, 5); in testDeleteContents() 156 XCell cellB10 = xSheet.getCellByPosition(1, 9); in testDeleteContents() 166 (XDrawPageSupplier)UnoRuntime.queryInterface(XDrawPageSupplier.class, xSheet); in testDeleteContents()
|
| /trunk/main/testtools/source/cliversioning/ |
| H A D | version.cs | 65 unoidl.com.sun.star.sheet.XSpreadsheet xSheet = getSpreadsheet( 0 ); in doCellRangeSamples() 71 setFormula( xSheet, "B5", "First cell" ); in doCellRangeSamples() 72 setFormula( xSheet, "B6", "Second cell" ); in doCellRangeSamples() 74 xCellRange = xSheet.getCellRangeByPosition( 1, 4, 1, 5 ); in doCellRangeSamples() 106 xCellRange = xSheet.getCellRangeByName( "F3:G6" ); in doCellRangeSamples() 107 prepareRange( xSheet, "E1:H7", "XMergeable" ); in doCellRangeSamples() 114 xCellRange = xSheet.getCellRangeByName( "B1" ); in doCellRangeSamples() 128 prepareRange( xSheet, "A9:C30", "XCellRangeData" ); in doCellRangeSamples() 130 xCellRange = xSheet.getCellRangeByName( "A10:C30" ); in doCellRangeSamples() 216 setValue( xSheet, "E10", 1 ); in doCellRangeSamples() [all …]
|
| /trunk/main/sc/source/ui/vba/ |
| H A D | vbaworksheets.cxx | 81 uno::Reference< sheet::XSpreadsheet > xSheet( *mIt++ ); in nextElement() local 82 return uno::makeAny( xSheet ) ; in nextElement() 154 …uno::Reference< sheet::XSpreadsheet > xSheet( m_xEnumeration->nextElement(), uno::UNO_QUERY_THROW … in nextElement() local 155 uno::Reference< XHelperInterface > xIf = excel::getUnoSheetModuleObj( xSheet ); in nextElement() 161 …ce< excel::XWorksheet > xNewSheet( new ScVbaWorksheet( m_xParent, m_xContext, xSheet, m_xModel ) ); in nextElement() 201 uno::Reference< sheet::XSpreadsheet > xSheet( aSource, uno::UNO_QUERY ); in createCollectionObject() local 202 uno::Reference< XHelperInterface > xIf = excel::getUnoSheetModuleObj( xSheet ); in createCollectionObject() 208 …ce< excel::XWorksheet > xNewSheet( new ScVbaWorksheet( getParent(), mxContext, xSheet, mxModel ) ); in createCollectionObject() 259 … uno::Reference< sheet::XSpreadsheet > xSheet(m_xIndexAccess->getByIndex(i), uno::UNO_QUERY); in Add() local 260 uno::Reference< container::XNamed > xNamed( xSheet, uno::UNO_QUERY_THROW ); in Add() [all …]
|
| H A D | excelvbahelper.cxx | 247 getUnoSheetModuleObj( const uno::Reference< sheet::XSpreadsheet >& xSheet ) throw ( uno::RuntimeExc… in getUnoSheetModuleObj() argument 249 uno::Reference< beans::XPropertySet > xProps( xSheet, uno::UNO_QUERY_THROW ); in getUnoSheetModuleObj() 257 return getUnoDocModule( sCodeName, GetDocShellFromRange( xSheet ) ); in getUnoSheetModuleObj() 264 … uno::Reference< sheet::XSpreadsheet > xSheet( xSheetRange->getSpreadsheet(), uno::UNO_SET_THROW ); in getUnoSheetModuleObj() local 265 return getUnoSheetModuleObj( xSheet ); in getUnoSheetModuleObj() 281 … uno::Reference< sheet::XSpreadsheet > xSheet( xSheetRange->getSpreadsheet(), uno::UNO_SET_THROW ); in getUnoSheetModuleObj() local 282 return getUnoSheetModuleObj( xSheet ); in getUnoSheetModuleObj() 290 … uno::Reference< sheet::XSpreadsheet > xSheet( xSheets->getByIndex( nTab ), uno::UNO_QUERY_THROW ); in getUnoSheetModuleObj() local 291 return getUnoSheetModuleObj( xSheet ); in getUnoSheetModuleObj()
|
| H A D | vbaworksheet.cxx | 131 uno::Reference< sheet::XSpreadsheet > xSheet(xIndex->getByIndex(i), uno::UNO_QUERY); in removeAllSheets() local 132 uno::Reference< container::XNamed > xNamed( xSheet, uno::UNO_QUERY_THROW ); in removeAllSheets() 139 uno::Reference< sheet::XSpreadsheet > xSheet(xIndex->getByIndex(0), uno::UNO_QUERY); in removeAllSheets() local 140 uno::Reference< container::XNamed > xNamed( xSheet, uno::UNO_QUERY_THROW ); in removeAllSheets() 186 const uno::Reference< sheet::XSpreadsheet >& xSheet, in ScVbaWorksheet() 187 …o::RuntimeException) : WorksheetImpl_BASE( xParent, xContext ), mxSheet( xSheet ), mxModel(xModel)… in ScVbaWorksheet() 471 uno::Reference<excel::XWorksheet> xSheet; in Move() local 474 if (!(Before >>= xSheet) && !(After >>=xSheet)&& !(Before.hasValue()) && !(After.hasValue())) in Move() 495 if ( ScVbaWorksheets::nameExists (xSpreadDoc, xSheet->getName(), nDest) ) in Move() 508 uno::Reference<excel::XWorksheet> xSheet; in Copy() local [all …]
|
| /trunk/main/qadevOOo/java/OOoRunner/src/main/java/ifc/sheet/ |
| H A D | _XDocumentAuditing.java | 53 XSpreadsheet[] xSheet = null; field in _XDocumentAuditing 61 xSheet = new XSpreadsheet[2]; in before() 70 xSheet[0] = oSheet; in before() 73 xSheet[1] = oSheet; in before() 119 xSheet[0].getCellByPosition(6, 6).setValue(9); in before() 120 XNamed xNamed = (XNamed)UnoRuntime.queryInterface(XNamed.class, xSheet[0]); in before() 122 xSheet[1].getCellByPosition(6, 6).setValue(16); in before() 123 xSheet[1].getCellByPosition(6, 7).setFormula("= SQRT(G7)"); in before() 124 …diting xSheetAuditing = (XSheetAuditing)UnoRuntime.queryInterface(XSheetAuditing.class, xSheet[1]); in before() 152 result &= xSheet[1].getCellByPosition(6, 7).getValue() == 4; in _refreshArrows() [all …]
|
| H A D | _XDataPilotTable2.java | 222 XSpreadsheet xSheet = null; in _insertDrillDownSheet() local 225 xSheet = (XSpreadsheet)UnoRuntime.queryInterface( in _insertDrillDownSheet() 235 if (!checkDrillDownSheetContent(xSheet, data)) in _insertDrillDownSheet() 246 XNamed xNamed = (XNamed)UnoRuntime.queryInterface(XNamed.class, xSheet); in _insertDrillDownSheet() 472 private boolean checkDrillDownSheetContent(XSpreadsheet xSheet, Object[][] data) in checkDrillDownSheetContent() argument 474 CellAddress lastCell = getLastUsedCellAddress(xSheet, 0, 0); in checkDrillDownSheetContent() 490 xCR = xSheet.getCellRangeByPosition(0, 0, lastCell.Column, lastCell.Row); in checkDrillDownSheetContent() 547 private CellAddress getLastUsedCellAddress(XSpreadsheet xSheet, int nCol, int nRow) in getLastUsedCellAddress() argument 551 XCellRange xRng = xSheet.getCellRangeByPosition(nCol, nRow, nCol, nRow); in getLastUsedCellAddress() 555 XSheetCellCursor xCursor = xSheet.createCursorByRange(xSCR); in getLastUsedCellAddress()
|
| H A D | _XSheetAuditing.java | 77 XSpreadsheet xSheet = (XSpreadsheet)tEnv.getObjRelation("XSheetAuditing.Spreadsheet"); in before() local 78 if (xSheet == null) // query on their object in before() 79 xSheet = (XSpreadsheet)UnoRuntime.queryInterface(XSpreadsheet.class, oObj); in before() 80 if (xSheet == null) in before() 83 xAddress = xSheet.getCellByPosition(address.Column, address.Row); in before() 84 … xDependentAddress = xSheet.getCellByPosition(dependentAddress.Column, dependentAddress.Row); in before() 85 … xPrecedentAddress = xSheet.getCellByPosition(precedentAddress.Column, precedentAddress.Row); in before()
|
| H A D | _XGoalSeek.java | 41 XSpreadsheet xSheet = null; field in _XGoalSeek 54 xSheet = (XSpreadsheet) UnoRuntime.queryInterface( in before() 72 xSheet.getCellByPosition(3, 4).setValue(9); in before() 73 xSheet.getCellByPosition(3, 5).setFormula("= SQRT(D5)"); in before() 97 xSheet.getCellByPosition(3, 4).setValue(0.8); in _seekGoal() 98 xSheet.getCellByPosition(3, 5).setFormula("= (D5 ^ 2 - 1) / (D5 - 1)"); in _seekGoal()
|
| H A D | _Shape.java | 40 XSpreadsheet xSheet = null; in _Anchor() local 44 xSheet = (XSpreadsheet) UnoRuntime.queryInterface( in _Anchor() 47 xCell = xSheet.getCellByPosition(0, 0); in _Anchor() 56 testProperty("Anchor", xSheet, xCell); in _Anchor()
|
| /trunk/main/connectivity/source/drivers/calc/ |
| H A D | CTable.cxx | 104 void lcl_GetDataArea( const Reference<XSpreadsheet>& xSheet, sal_Int32& rColumnCount, sal_Int32& rR… in lcl_GetDataArea() argument 107 Reference<XSheetCellCursor> xCursor = xSheet->createCursor(); in lcl_GetDataArea() 136 Reference<XCellRange> xUsedRange = xSheet->getCellRangeByPosition( in lcl_GetDataArea() 144 Reference<XCellRange> xUsedRange = xSheet->getCellRangeByPosition( in lcl_GetDataArea() 174 Reference<XCell> lcl_GetUsedCell( const Reference<XSpreadsheet>& xSheet, sal_Int32 nDocColumn, sal_… in lcl_GetUsedCell() argument 177 Reference<XCell> xCell = xSheet->getCellByPosition( nDocColumn, nDocRow ); in lcl_GetUsedCell() 182 Reference<XCellRangeAddressable> xAddr( xSheet, UNO_QUERY ); in lcl_GetUsedCell() 187 …Reference<XCellRangesQuery> xQuery( xSheet->getCellRangeByPosition( nDocColumn, nDocRow, nDocColum… in lcl_GetUsedCell() 212 bool lcl_HasTextInColumn( const Reference<XSpreadsheet>& xSheet, sal_Int32 nDocColumn, sal_Int32 nD… in lcl_HasTextInColumn() argument 217 Reference<XCellRangeAddressable> xAddr( xSheet, UNO_QUERY ); in lcl_HasTextInColumn() [all …]
|
| /trunk/test/testuno/source/fvt/uno/sc/rowcolumn/ |
| H A D | CreateShowHideEditDeleteComments.java | 103 … XSpreadsheet xSheet = (XSpreadsheet) UnoRuntime.queryInterface(XSpreadsheet.class, sheetObj); in testCreateEditDeleteComments() local 106 xSheet = SCUtil.getCurrentSheet(scDocument); in testCreateEditDeleteComments() 112 XCell xCell = xSheet.getCellByPosition(0, nRow); in testCreateEditDeleteComments() 123 XSheetAnnotationsSupplier.class, xSheet); in testCreateEditDeleteComments() 132 XSheetAnnotationsSupplier.class, xSheet); in testCreateEditDeleteComments() 165 … XSpreadsheet xSheet = (XSpreadsheet) UnoRuntime.queryInterface(XSpreadsheet.class, sheetObj); in testShowHideComments() local 168 xSheet = SCUtil.getCurrentSheet(scDocument); in testShowHideComments() 176 XCell xCell = xSheet.getCellByPosition(nColumn, nRow); in testShowHideComments() 184 XSheetAnnotationsSupplier.class, xSheet); in testShowHideComments()
|
| /trunk/main/qadevOOo/java/OOoRunner/src/main/java/util/ |
| H A D | CalcTools.java | 62 XSpreadsheet xSheet = getSpreadSheetFromSheetDoc(xSheetDoc, sheetNumber); in fillCalcSheetWithContent() local 64 fillCalcSheetWithContent(xSheet, startCellX, startCellY, rangeLengthX, rangeLengthY); in fillCalcSheetWithContent() 82 public static void fillCalcSheetWithContent(XSpreadsheet xSheet, in fillCalcSheetWithContent() argument 96 xRange = xSheet.getCellRangeByPosition(startCellX, startCellY, in fillCalcSheetWithContent() 124 XSpreadsheet xSheet = null; in getSpreadSheetFromSheetDoc() local 136 xSheet = (XSpreadsheet) AnyConverter.toObject( in getSpreadSheetFromSheetDoc() 153 return xSheet; in getSpreadSheetFromSheetDoc()
|
| /trunk/main/oox/source/xls/ |
| H A D | workbookhelper.cxx | 677 Reference< XSpreadsheet > xSheet; in getSheetFromDoc() local 681 xSheet.set( xSheetsIA->getByIndex( nSheet ), UNO_QUERY_THROW ); in getSheetFromDoc() 686 return xSheet; in getSheetFromDoc() 691 Reference< XSpreadsheet > xSheet; in getSheetFromDoc() local 695 xSheet.set( xSheetsNA->getByName( rSheet ), UNO_QUERY ); in getSheetFromDoc() 700 return xSheet; in getSheetFromDoc() 708 Reference< XSpreadsheet > xSheet( getSheetFromDoc( rAddress.Sheet ), UNO_SET_THROW ); in getCellFromDoc() local 709 xCell = xSheet->getCellByPosition( rAddress.Column, rAddress.Row ); in getCellFromDoc() 722 Reference< XSpreadsheet > xSheet( getSheetFromDoc( rRange.Sheet ), UNO_SET_THROW ); in getCellRangeFromDoc() local 723 …xRange = xSheet->getCellRangeByPosition( rRange.StartColumn, rRange.StartRow, rRange.EndColumn, rR… in getCellRangeFromDoc()
|
| /trunk/test/testuno/source/fvt/uno/sc/object/ |
| H A D | DrawingObject.java | 136 XSpreadsheet xSheet = SCUtil.getCurrentSheet(scDocument); in testDrawingObject() local 138 (XDrawPageSupplier)UnoRuntime.queryInterface(XDrawPageSupplier.class, xSheet); in testDrawingObject() 157 xSheet = SCUtil.getCurrentSheet(scDocument); in testDrawingObject() 159 (XDrawPageSupplier)UnoRuntime.queryInterface(XDrawPageSupplier.class, xSheet); in testDrawingObject() 186 xSheet = SCUtil.getCurrentSheet(scDocument); in testDrawingObject() 188 (XDrawPageSupplier)UnoRuntime.queryInterface(XDrawPageSupplier.class, xSheet); in testDrawingObject()
|
| /trunk/main/sc/workben/ |
| H A D | test.cxx | 670 XTableSheetRef xSheet = xSheets->getSheetByIndex(0); in lcl_Sheet() local 671 if (!xSheet) return; in lcl_Sheet() 672 XNamedRef xNamed = (XNamed*)xSheet->queryInterface(XNamed::getSmartUik()); in lcl_Sheet() 679 XCellRangeRef xRange = (XCellRange*)xSheet->queryInterface(XCellRange::getSmartUik()); in lcl_Sheet() 689 …XColumnRowRangeRef xCRR = (XColumnRowRange*)xSheet->queryInterface(XColumnRowRange::getSmartUik()); in lcl_Sheet() 922 XTableSheetRef xSheet = xSheets->getSheetByIndex(0); in lcl_Audi() local 923 if (!xSheet) return; in lcl_Audi() 925 … XSheetAuditingRef xAudi = (XSheetAuditing*)xSheet->queryInterface(XSheetAuditing::getSmartUik()); in lcl_Audi() 1091 XTableSheetRef xSheet = xSheets->getSheetByIndex(0); in lcl_Outline() local 1092 if (!xSheet) return; in lcl_Outline() [all …]
|