Home
last modified time | relevance | path

Searched refs:xRows (Results 1 – 19 of 19) sorted by relevance

/trunk/main/svtools/source/filter/
H A Dexportdialog.cxx832 xIndenter->setChild( xRows ); in createColorDepthControls()
877 xIndenter->setChild( xRows ); in createFilterOptions()
909 xIndenter->setChild( xRows ); in createFilterOptions()
921 xIndenter->setChild( xRows ); in createFilterOptions()
941 xIndenter->setChild( xRows ); in createFilterOptions()
972 xIndenter->setChild( xRows ); in createFilterOptions()
986 xIndenter->setChild( xRows ); in createFilterOptions()
995 xIndenter->setChild( xRows ); in createFilterOptions()
1014 xIndenter->setChild( xRows ); in createFilterOptions()
1036 xIndenter->setChild( xRows ); in createFilterOptions()
[all …]
/trunk/main/odk/examples/CLI/CSharp/Spreadsheet/
H A DGeneralTableSample.cs154 unoidl.com.sun.star.table.XTableRows xRows = xCRRange.getRows(); in doSampleFunction()
177 uno.Any aRowObj = xRows.getByIndex( 6 ); in doSampleFunction()
187 xRows.insertByIndex( 9, 1 ); in doSampleFunction()
189 xRows.removeByIndex( 11, 2 ); in doSampleFunction()
/trunk/main/odk/examples/DevelopersGuide/Spreadsheet/
H A DGeneralTableSample.java149 com.sun.star.table.XTableRows xRows = xCRRange.getRows(); in doSampleFunction() local
173 Object aRowObj = xRows.getByIndex( 6 ); in doSampleFunction()
184 xRows.insertByIndex( 9, 1 ); in doSampleFunction()
186 xRows.removeByIndex( 11, 2 ); in doSampleFunction()
/trunk/test/testuno/source/fvt/uno/sw/table/
H A DTableBasic.java94 XTableRows xRows=xTable_Assert.getRows(); in testCreateTable() local
95 assertEquals("assert inserted table has 5 rows",5, xRows.getCount()); in testCreateTable()
118 XTableRows xRows=xTable.getRows(); in testInsert_Delete_Rows_Columns() local
120 xRows.insertByIndex(0, 2); in testInsert_Delete_Rows_Columns()
122 assertEquals("assert inserted 2 rows",7, xRows.getCount()); in testInsert_Delete_Rows_Columns()
124 xRows.removeByIndex(0, 3); in testInsert_Delete_Rows_Columns()
126 assertEquals("assert delete 3 rows",4, xRows.getCount()); in testInsert_Delete_Rows_Columns()
147 XTableRows xRows=xTable.getRows(); in testSetRowHeight() local
149 …XPropertySet xRowsProps = (XPropertySet)UnoRuntime.queryInterface(XPropertySet.class, xRows.getByI… in testSetRowHeight()
/trunk/main/sw/source/ui/vba/
H A Dvbatable.cxx69 uno::Reference< table::XTableRows > xRows( mxTextTable->getRows() ); in Delete() local
70 xRows->removeByIndex( 0, xRows->getCount() ); in Delete()
/trunk/test/testuno/source/fvt/uno/sc/rowcolumn/
H A DInsertDeleteRowAndColumn.java78 XTableRows xRows = xCRRange.getRows(); in testInsertDeleteRows() local
88 xRows.insertByIndex( 2, 1 ); in testInsertDeleteRows()
98 xRows.removeByIndex( 2, 2 ); in testInsertDeleteRows()
/trunk/main/svx/source/table/
H A Dtablelayouter.cxx699 Reference< XTableRows > xRows( mxTable->getRows() ); in LayoutTableHeight() local
745 Reference< XPropertySet > xRowSet( xRows->getByIndex(nRow), UNO_QUERY_THROW ); in LayoutTableHeight()
829 Reference< XPropertySet > xRowSet( xRows->getByIndex(nRow), UNO_QUERY_THROW ); in LayoutTableHeight()
855 Reference< XTableRows > xRows( mxTable->getRows() ); in LayoutTable() local
1180 Reference< XTableRows > xRows( mxTable->getRows(), UNO_QUERY_THROW ); in DistributeRows() local
1186 Reference< XPropertySet > xRowSet( xRows->getByIndex( nRow ), UNO_QUERY_THROW ); in DistributeRows()
H A Dtablertfexporter.cxx122 Reference< XTableRows > xRows( mxTable->getRows() ); in Write() local
123 const sal_Int32 nRowCount = xRows->getCount(); in Write()
127 Reference< XPropertySet > xRowSet( xRows->getByIndex(nRow), UNO_QUERY_THROW ); in Write()
H A Dcellcursor.cxx423 Reference< XTableRows > xRows( mxTable->getRows(), UNO_QUERY_THROW ); in split_row() local
424 Reference< XPropertySet > xRefRow( xRows->getByIndex( nRow ), UNO_QUERY_THROW ); in split_row()
432 xRows->insertByIndex( nRow + 1, nNewRows ); in split_row()
438 Reference< XPropertySet > xNewRow( xRows->getByIndex( nNewRow ), UNO_QUERY_THROW ); in split_row()
H A Dtablecontroller.cxx582 Reference< XTableRows > xRows( mxTable->getRows() ); in onInsert() local
585 xRows->insertByIndex( nNewRowStart, nNewRows ); in onInsert()
589 Reference< XPropertySet >( xRows->getByIndex( aEnd.mnRow + nOffset + 1 ), UNO_QUERY_THROW )-> in onInsert()
591 Reference< XPropertySet >( xRows->getByIndex( aStart.mnRow + nOffset ), UNO_QUERY_THROW )-> in onInsert()
661 Reference< XTableRows > xRows( mxTable->getRows() ); in onDelete() local
662 xRows->removeByIndex( aStart.mnRow, nRemovedRows ); in onDelete()
2483 Reference< XTableRows > xRows( mxTable->getRows() ); in PasteObject() local
2484 xRows->insertByIndex( nRows, nMissing ); in PasteObject()
H A Dsvdotable.cxx484 Reference< XIndexAccess > xRows( mxTable->getRows(), UNO_QUERY_THROW ); in DragEdge() local
485 Reference< XPropertySet > xRowSet( xRows->getByIndex( nEdge ), UNO_QUERY_THROW ); in DragEdge()
1163 Reference< XTableRows > xRows( mpImpl->mxTable->getRows(), UNO_QUERY_THROW ); in InsertRows() local
1164 xRows->insertByIndex( nIndex, nCount ); in InsertRows()
1193 Reference< XTableRows > xRows( mpImpl->mxTable->getRows(), UNO_QUERY_THROW ); in DeleteRows() local
1194 xRows->removeByIndex( nIndex, nCount ); in DeleteRows()
H A Dtablertfimporter.cxx266 Reference< XTableRows > xRows( mxTable->getRows(), UNO_QUERY_THROW ); in FillTable() local
267 xRows->insertByIndex( nRowCount, mnRowCnt - nRowCount ); in FillTable()
/trunk/main/wizards/com/sun/star/wizards/report/
H A DDBColumn.java173 XTableRows xRows = null; in DBColumn() local
176 xRows = xTextTable.getRows(); in DBColumn()
186 for (int m = 0; m < xRows.getCount(); m++) in DBColumn()
/trunk/main/oox/source/xls/
H A Dworksheethelper.cxx538 Reference< XTableRows > xRows( xColRowRange->getRows(), UNO_SET_THROW ); in getRow() local
539 xRow.set( xRows->getByIndex( nRow ), UNO_QUERY ); in getRow()
562 Reference< XTableRows > xRows; in getRows() local
568 xRows = xRange->getRows(); in getRows()
570 return xRows; in getRows()
/trunk/main/odk/examples/DevelopersGuide/Text/
H A DTextDocuments.java744 XIndexAccess xRows = xTable.getRows(); in TextTableExample() local
749 XPropertySet.class, xRows.getByIndex ( 0 ) ); in TextTableExample()
907 XIndexAccess xRows = xTable.getRows(); in AutoTextExample() local
911 XPropertySet.class, xRows.getByIndex ( 0 ) ); in AutoTextExample()
/trunk/main/sc/workben/
H A Dtest.cxx718 XTableRowsRef xRows = xCRR->getRows(); in lcl_Sheet() local
719 if (!xRows) return; in lcl_Sheet()
720 XPropertySetRef xRow = xRows->getRowByIndex(1); in lcl_Sheet()
723 xRows->removeRowsByIndex( 2, 1 ); in lcl_Sheet()
/trunk/main/extensions/source/propctrlr/
H A Dformgeometryhandler.cxx695 Reference< XTableRows > xRows( xColsRows->getRows(), UNO_SET_THROW ); in impl_setSheetAnchorType_nothrow() local
696 … sal_Int32 nNewAnchorRow = lcl_getLowerBoundRowOrColumn( xRows.get(), true, aRelativePosition ); in impl_setSheetAnchorType_nothrow()
/trunk/main/sd/source/filter/eppt/
H A Depptso.cxx5741 …uno::Reference< container::XIndexAccess > xRows( xColumnRowRange->getRows(), uno::UNO_QUERY_THROW … in ImplCreateTable() local
5742 sal_uInt16 nRowCount = static_cast< sal_uInt16 >( xRows->getCount() ); in ImplCreateTable()
5765 uno::Reference< beans::XPropertySet > xPropSet( xRows->getByIndex( y ), uno::UNO_QUERY_THROW ); in ImplCreateTable()
5813 for( sal_Int32 nRow = 0; nRow < xRows->getCount(); nRow++ ) in ImplCreateTable()
5883 for( sal_Int32 nLine = 0; nLine < ( xRows->getCount() + 1 ); nLine++ ) in ImplCreateTable()
5892 if ( nLine < xRows->getCount() ) in ImplCreateTable()
5909 if (( nLine && !bTop ) || (nLine == xRows->getCount())) in ImplCreateTable()
5942 for( sal_Int32 nRow = 0; nRow < xRows->getCount(); nRow++ ) in ImplCreateTable()
/trunk/main/sw/source/core/unocore/
H A Dunotext.cxx2325 const uno::Reference< table::XTableRows > xRows = xRet->getRows(); in convertToTable() local
2329 for (sal_Int32 nRow = 0; nRow < xRows->getCount(); ++nRow) in convertToTable()
2336 xRows->getByIndex(nRow), aRowSeparators[nRow]); in convertToTable()

Completed in 147 milliseconds