| /AOO42X/main/svx/source/dialog/ |
| H A D | framelinkarray.cxx | 101 for( size_t nRow = nFirstRow; nRow <= nLastRow; ++nRow ) in lclSetMergedRange() local 103 Cell& rCell = rCells[ nRow * nWidth + nCol ]; in lclSetMergedRange() 106 rCell.mbOverlapY = nRow > nFirstRow; in lclSetMergedRange() 140 const Cell& ArrayImpl::GetCell( size_t nCol, size_t nRow ) const in GetCell() 142 return IsValidPos( nCol, nRow ) ? maCells[ GetIndex( nCol, nRow ) ] : OBJ_CELL_NONE; in GetCell() 145 Cell& ArrayImpl::GetCellAcc( size_t nCol, size_t nRow ) in GetCellAcc() argument 148 return IsValidPos( nCol, nRow ) ? maCells[ GetIndex( nCol, nRow ) ] : aDummy; in GetCellAcc() 151 size_t ArrayImpl::GetMergedFirstCol( size_t nCol, size_t nRow ) const in GetMergedFirstCol() 154 while( (nFirstCol > 0) && GetCell( nFirstCol, nRow ).mbOverlapX ) --nFirstCol; in GetMergedFirstCol() 158 size_t ArrayImpl::GetMergedFirstRow( size_t nCol, size_t nRow ) const in GetMergedFirstRow() [all …]
|
| /AOO42X/main/svx/inc/svx/ |
| H A D | framelinkarray.hxx | 87 inline bool IsValidPos( size_t nCol, size_t nRow ) const in IsValidPos() 88 { return (nCol < mnWidth) && (nRow < mnHeight); } in IsValidPos() 89 inline size_t GetIndex( size_t nCol, size_t nRow ) const in GetIndex() 90 { return nRow * mnWidth + nCol; } in GetIndex() 92 const Cell& GetCell( size_t nCol, size_t nRow ) const; 93 Cell& GetCellAcc( size_t nCol, size_t nRow ); 95 size_t GetMergedFirstCol( size_t nCol, size_t nRow ) const; 96 size_t GetMergedFirstRow( size_t nCol, size_t nRow ) const; 97 size_t GetMergedLastCol( size_t nCol, size_t nRow ) const; 98 size_t GetMergedLastRow( size_t nCol, size_t nRow ) const; [all …]
|
| /AOO42X/main/sc/source/core/data/ |
| H A D | column.cxx | 96 SCsROW ScColumn::GetNextUnprotected( SCROW nRow, sal_Bool bUp ) const in GetNextUnprotected() argument 98 return pAttrArray->GetNextUnprotected(nRow, bUp); in GetNextUnprotected() 129 while ( nIndex < nCount && pItems[nIndex].nRow <= nRow2 ) in GetBlockMatrixEdges() 178 while ( !bFound && nIndex < nCount && pItems[nIndex].nRow <= nBottom ) in HasSelectionMatrixFragment() 317 const ScPatternAttr* ScColumn::GetPattern( SCROW nRow ) const in GetPattern() 319 return pAttrArray->GetPattern( nRow ); in GetPattern() 322 const ScPatternAttr* ScColumn::GetPatternRange( SCROW& rStartRow, SCROW& rEndRow, SCROW nRow ) const in GetPatternRange() 324 return pAttrArray->GetPatternRange( rStartRow, rEndRow, nRow ); in GetPatternRange() 327 const SfxPoolItem* ScColumn::GetAttr( SCROW nRow, sal_uInt16 nWhich ) const in GetAttr() argument 329 return &pAttrArray->GetPattern( nRow )->GetItemSet().Get(nWhich); in GetAttr() [all …]
|
| H A D | table5.cxx | 365 bool ScTable::HasRowPageBreak(SCROW nRow) const in HasRowPageBreak() 367 if (!ValidRow(nRow)) in HasRowPageBreak() 370 return maRowPageBreaks.find(nRow) != maRowPageBreaks.end(); in HasRowPageBreak() 381 bool ScTable::HasRowManualBreak(SCROW nRow) const in HasRowManualBreak() 383 if (!ValidRow(nRow)) in HasRowManualBreak() 386 return maRowManualBreaks.find(nRow) != maRowManualBreaks.end(); in HasRowManualBreak() 397 SCROW ScTable::GetNextManualBreak(SCROW nRow) const in GetNextManualBreak() 399 set<SCROW>::const_iterator itr = maRowManualBreaks.lower_bound(nRow); in GetNextManualBreak() 415 void ScTable::RemoveRowBreak(SCROW nRow, bool bPage, bool bManual) in RemoveRowBreak() argument 417 if (!ValidRow(nRow)) in RemoveRowBreak() [all …]
|
| H A D | column3.cxx | 71 void ScColumn::Insert( SCROW nRow, ScBaseCell* pNewCell ) in Insert() argument 76 if (pItems[nCount-1].nRow < nRow) in Insert() 78 Append(nRow, pNewCell ); in Insert() 85 if (Search(nRow, nIndex)) in Insert() 99 if ( nIndex >= nCount || pItems[nIndex].nRow != nRow ) in Insert() 100 Search(nRow, nIndex); in Insert() 133 pItems[nIndex].nRow = nRow; in Insert() 154 ScAddress( nCol, nRow, nTab ), pNewCell ) ); in Insert() 160 void ScColumn::Insert( SCROW nRow, sal_uLong nNumberFormat, ScBaseCell* pCell ) in Insert() argument 162 Insert(nRow, pCell); in Insert() [all …]
|
| H A D | table2.cxx | 214 SCROW nRow = *it; in DeleteRow() local 216 maRowManualBreaks.insert( static_cast<SCROW>( nRow - nSize)); in DeleteRow() 564 SCROW nRow; in TransposeClip() local 571 for ( nRow=nRow1; nRow<=nRow2; nRow++ ) in TransposeClip() 575 …ScAddress aDestPos( static_cast<SCCOL>(nRow-nRow1), static_cast<SCROW>(nCol-nCol1), pTransClip->nT… in TransposeClip() 578 aRef.nRow = nRow; in TransposeClip() 587 … pTransClip->PutCell( static_cast<SCCOL>(nRow-nRow1), static_cast<SCROW>(nCol-nCol1), pNew ); in TransposeClip() 593 while (aIter.Next( nRow, pCell )) in TransposeClip() 595 …ScAddress aDestPos( static_cast<SCCOL>(nRow-nRow1), static_cast<SCROW>(nCol-nCol1), pTransClip->nT… in TransposeClip() 603 ScAddress aOwnPos( nCol, nRow, nTab ); in TransposeClip() [all …]
|
| H A D | dociter.cxx | 74 nRow = 0; in ScDocumentIterator() 93 nRow = MAXROW; in GetThisCol() 109 nAttrEnd = pAtt->pData[nAttrPos].nRow; in GetThisCol() 110 if (nAttrEnd < nRow) in GetThisCol() 113 while (nAttrEnd < nRow); in GetThisCol() 117 nColRow = (nColPos < pCol->nCount) ? pCol->pItems[nColPos].nRow : MAXROW+1; in GetThisCol() 118 if (nColRow < nRow) in GetThisCol() 121 while (nColRow < nRow); in GetThisCol() 123 if (nColRow == nRow) in GetThisCol() 137 nRow = Min( (SCROW)nColRow, (SCROW)(nAttrEnd+1) ); in GetThisCol() [all …]
|
| H A D | attarray.cxx | 75 pData[0].nRow = MAXROW; in ScAttrArray() 110 … if (pData[nPos].pPattern == pData[nPos-1].pPattern || pData[nPos].nRow <= pData[nPos-1].nRow) in TestData() 115 if ( nPos && pData[nPos-1].nRow != MAXROW ) in TestData() 147 aAdrStart.SetRow( i ? pData[i-1].nRow+1 : 0 ); in Reset() 148 aAdrEnd .SetRow( pData[i].nRow ); in Reset() 176 pData[0].nRow = MAXROW; in Reset() 198 pData[nPos - 1].nRow = pData[nPos].nRow; in Concat() 202 pData[nCount - 1].nRow = 0; in Concat() 212 pData[nPos].nRow = pData[nPos + 1].nRow; in Concat() 216 pData[nCount - 1].nRow = 0; in Concat() [all …]
|
| H A D | table6.cxx | 60 sal_Bool ScTable::SearchCell(const SvxSearchItem& rSearchItem, SCCOL nCol, SCROW nRow, in SearchCell() argument 70 bDoSearch = rMark.IsCellMarked(nCol, nRow); in SearchCell() 71 if ( bDoSearch && ((pCell = aCol[nCol].GetCell( nRow )) != NULL) ) in SearchCell() 86 aCol[nCol].GetInputString( nRow, aString ); in SearchCell() 94 aCol[nCol].GetString( nRow, aString ); in SearchCell() 151 ScAddress aAdr( nCol, nRow, nTab ); in SearchCell() 215 pNote->SetText( ScAddress( nCol, nRow, nTab ), aString ); in SearchCell() 226 ScAddress aAdr( nCol, nRow, nTab ); in SearchCell() 233 aCol[nCol].Insert( nRow, pFCell ); in SearchCell() 236 PutCell( nCol, nRow, new ScEditCell( aString, pDocument ) ); in SearchCell() [all …]
|
| H A D | column2.cxx | 183 long ScColumn::GetNeededSize( SCROW nRow, OutputDevice* pDev, in GetNeededSize() argument 191 if (Search(nRow,nIndex)) in GetNeededSize() 196 pPattern = pAttrArray->GetPattern( nRow ); in GetNeededSize() 222 pCondSet = pDocument->GetCondResult( nCol, nRow, nTab ); in GetNeededSize() 312 sal_uInt8 nScript = pDocument->GetScriptType( nCol, nRow, nTab, pCell ); in GetNeededSize() 370 nWidth += (long)( pDocument->GetRowHeight( nRow,nTab ) * in GetNeededSize() 535 nWidth += (long)( pDocument->GetRowHeight( nRow,nTab ) * in GetNeededSize() 634 SCROW nRow = pItems[nIndex].nRow; in GetSimpleTextNeededSize() local 635 const ScPatternAttr* pPattern = pAttrArray->GetPattern( nRow ); in GetSimpleTextNeededSize() 702 SCROW nRow = pItems[nIndex].nRow; in GetOptimalColWidth() local [all …]
|
| H A D | table4.cxx | 218 SCROW nRow = nRow1; in FillAnalyse() local 220 ScBaseCell* pFirstCell = GetCell( nCol, nRow ); in FillAnalyse() 225 … sal_uInt32 nFormat = ((const SfxUInt32Item*)GetAttr(nCol,nRow,ATTR_VALUE_FORMAT))->GetValue(); in FillAnalyse() 238 nVal = GetValue(nCol+nAddX, nRow+nAddY); in FillAnalyse() 258 nRow = sal::static_int_cast<SCROW>( nRow + nAddY ); in FillAnalyse() 262 ScBaseCell* pCell = GetCell(nCol,nRow); in FillAnalyse() 282 nRow = sal::static_int_cast<SCROW>( nRow + nAddY ); in FillAnalyse() 312 double nVal2 = GetValue(nCol+nAddX, nRow+nAddY); in FillAnalyse() 315 nRow = sal::static_int_cast<SCROW>( nRow + nAddY ); in FillAnalyse() 319 ScBaseCell* pCell = GetCell(nCol,nRow); in FillAnalyse() [all …]
|
| H A D | dpcachetable.cxx | 209 for (SCROW nRow = 0; nRow < nRowCount; ++nRow ) in fillTable() local 211 SCROW nIndex = GetCache()->GetItemDataId( nCol, nRow, bRepeatIfEmpty ); in fillTable() 218 !GetCache()->ValidQuery( nRow , rQuery, pSpecial ) ) in fillTable() 220 if ( bIgnoreEmptyRows && GetCache()->IsRowEmpty( nRow ) ) in fillTable() 229 for ( SCROW nRow = 0; nRow < nMemCount; nRow++ ) in fillTable() local 231 if ( pAdded[nRow] != -1 ) in fillTable() 232 maFieldEntries.back().push_back( pAdded[nRow] ); in fillTable() 264 for (SCROW nRow = 0; nRow < nRowCount; ++nRow ) in fillTable() local 266 SCROW nIndex = GetCache()->GetItemDataId( nCol, nRow, false ); in fillTable() 276 for ( SCROW nRow = 0; nRow < nMemCount; nRow++ ) in fillTable() local [all …]
|
| H A D | markarr.cxx | 67 pData[0].nRow = MAXROW; in Reset() 73 sal_Bool ScMarkArray::Search( SCROW nRow, SCSIZE& nIndex ) const in Search() argument 87 nStartRow = (long) pData[i - 1].nRow; in Search() 90 nEndRow = (long) pData[i].nRow; in Search() 91 if (nEndRow < (long) nRow) in Search() 94 if (nStartRow >= (long) nRow) in Search() 110 sal_Bool ScMarkArray::GetMark( SCROW nRow ) const in GetMark() 113 if (Search( nRow, i )) in GetMark() 161 if ( ni == 0 || (pData[ni-1].nRow < nStartRow - 1) ) in SetMarkArea() 164 if ( pData[ni].nRow > nEndRow ) in SetMarkArea() [all …]
|
| /AOO42X/main/sc/source/core/tool/ |
| H A D | rangeseq.cxx | 80 for (long nRow = 0; nRow < nRowCount; nRow++) in FillLongArray() local 86 ScAddress( (SCCOL)(nStartCol+nCol), (SCROW)(nStartRow+nRow), nTab ) ) ); in FillLongArray() 88 pRowAry[nRow] = aColSeq; in FillLongArray() 107 for (SCSIZE nRow = 0; nRow < nRowCount; nRow++) in FillLongArray() local 112 if ( pMatrix->IsString( nCol, nRow ) ) in FillLongArray() 115 pColAry[nCol] = lcl_DoubleToLong( pMatrix->GetDouble( nCol, nRow ) ); in FillLongArray() 117 pRowAry[nRow] = aColSeq; in FillLongArray() 136 for (long nRow = 0; nRow < nRowCount; nRow++) in FillDoubleArray() local 142 ScAddress( (SCCOL)(nStartCol+nCol), (SCROW)(nStartRow+nRow), nTab ) ); in FillDoubleArray() 144 pRowAry[nRow] = aColSeq; in FillDoubleArray() [all …]
|
| /AOO42X/main/svx/source/table/ |
| H A D | tablelayouter.cxx | 155 sal_Int32 TableLayouter::getRowHeight( sal_Int32 nRow ) in getRowHeight() argument 157 if( isValidRow(nRow) ) in getRowHeight() 158 return maRows[nRow].mnSize; in getRowHeight() 165 void TableLayouter::setRowHeight( sal_Int32 nRow, sal_Int32 nHeight ) in setRowHeight() argument 167 if( isValidRow(nRow) ) in setRowHeight() 169 maRows[nRow].mnSize = nHeight; in setRowHeight() 365 sal_Int32 nRow, nCol; in findMergeOrigin() local 370 nRow = nMergedY - nStep; in findMergeOrigin() 371 if( nRow >= nMinRow ) in findMergeOrigin() 376 if( checkMergeOrigin( xTable, nMergedX, nMergedY, nCol, nRow, bCheckVert ) ) in findMergeOrigin() [all …]
|
| H A D | tablemodel.cxx | 162 for( sal_Int32 nRow = 0; nRow < nRowCount; ++nRow ) in TableModel() local 164 CellRef xTargetCell( getCell( nCol, nRow ) ); in TableModel() 166 xTargetCell->cloneFrom( xSourceTable->getCell( nCol, nRow ) ); in TableModel() 301 for( sal_Int32 nRow = 0; nRow < nRows; ++nRow ) in UndoRemoveColumns() local 303 CellVector::iterator aIter2 = aIter + nRow * nCount; in UndoRemoveColumns() 305 maRows[nRow]->insertColumns( nIndex, nCount, &aIter2 ); in UndoRemoveColumns() 442 Reference< XCell > SAL_CALL TableModel::getCellByPosition( sal_Int32 nColumn, sal_Int32 nRow ) thro… in getCellByPosition() argument 446 CellRef xCell( getCell( nColumn, nRow ) ); in getCellByPosition() 652 for( sal_Int32 nRow = 0; nRow < nRowCount; ++nRow ) in notifyModification() local 654 fprintf( file, "<row this=\"%lx\">\n\r", maRows[nRow].get() ); in notifyModification() [all …]
|
| H A D | cellcursor.cxx | 67 Reference< XCell > SAL_CALL CellCursor::getCellByPosition( sal_Int32 nColumn, sal_Int32 nRow ) thro… in getCellByPosition() argument 69 return CellRange::getCellByPosition( nColumn, nRow ); in getCellByPosition() 210 sal_Int32 nRow, nCol; in GetMergedSelection() local 211 for( nRow = rStart.mnRow; nRow <= rEnd.mnRow; nRow++ ) in GetMergedSelection() 215 … xCell.set( dynamic_cast< Cell* >( mxTable->getCellByPosition( nCol, nRow ).get() ) ); in GetMergedSelection() 222 if( findMergeOrigin( mxTable, nCol, nRow, nOriginCol, nOriginRow ) ) in GetMergedSelection() 238 …else if( ((nCol + xCell->getColumnSpan() - 1) > rEnd.mnCol) || ((nRow + xCell->getRowSpan() - 1 ) … in GetMergedSelection() 294 sal_Int32 nNewCols = 0, nRow; in split_column() local 297 for( nRow = mnTop; nRow <= mnBottom; ++nRow ) in split_column() 299 CellRef xCell( dynamic_cast< Cell* >( mxTable->getCellByPosition( nCol, nRow ).get() ) ); in split_column() [all …]
|
| /AOO42X/main/sc/source/ui/miscdlgs/ |
| H A D | optsolver.cxx | 304 for ( sal_uInt16 nRow = 0; nRow < EDIT_ROW_COUNT; ++nRow ) in Init() local 306 mpDelButton[nRow]->SetModeImage( aDelNm, BMP_COLOR_NORMAL ); in Init() 307 mpDelButton[nRow]->SetModeImage( aDelHC, BMP_COLOR_HIGHCONTRAST ); in Init() 322 for ( sal_uInt16 nRow = 0; nRow < EDIT_ROW_COUNT; ++nRow ) in Init() local 324 mpLeftEdit[nRow]->SetGetFocusHdl( aLink ); in Init() 325 mpLeftButton[nRow]->SetGetFocusHdl( aLink ); in Init() 326 mpRightEdit[nRow]->SetGetFocusHdl( aLink ); in Init() 327 mpRightButton[nRow]->SetGetFocusHdl( aLink ); in Init() 328 mpOperator[nRow]->SetGetFocusHdl( aLink ); in Init() 338 for ( sal_uInt16 nRow = 0; nRow < EDIT_ROW_COUNT; ++nRow ) in Init() local [all …]
|
| /AOO42X/main/dbaccess/source/ui/tabledesign/ |
| H A D | TEditControl.cxx | 286 long nRow(GetCurRow()); in SetReadOnly() local 304 ActivateCell( nRow, nCol ); in SetReadOnly() 411 sal_Bool OTableEditorCtrl::SetDataPtr( long nRow ) in SetDataPtr() argument 414 if(nRow == -1) in SetDataPtr() 417 OSL_ENSURE((xub_StrLen)nRow < m_pRowList->size(),"Row is greater than size!"); in SetDataPtr() 418 if(nRow >= (long)m_pRowList->size()) in SetDataPtr() 420 pActRow = (*m_pRowList)[nRow]; in SetDataPtr() 451 CellController* OTableEditorCtrl::GetController(long nRow, sal_uInt16 nColumnId) in GetController() argument 464 SetDataPtr( nRow ); in GetController() 493 void OTableEditorCtrl::InitController(CellControllerRef&, long nRow, sal_uInt16 nColumnId) in InitController() argument [all …]
|
| /AOO42X/main/ucb/source/cacher/ |
| H A D | cachedcontentresultset.cxx | 62 sal_Int32 nRow = m_nRow; \ 65 if( !m_aCache.hasRow( nRow ) ) \ 67 if( !m_aCache.hasCausedException( nRow ) ) \ 76 applyPositionToOrigin( nRow ); \ 78 impl_fetchData( nRow, nFetchSize, nFetchDirection ); \ 81 if( !m_aCache.hasRow( nRow ) ) \ 85 applyPositionToOrigin( nRow ); \ 90 const Any& rValue = m_aCache.getAny( nRow, columnIndex );\ 198 ::hasCausedException( sal_Int32 nRow ) in hasCausedException() argument 209 return nRow == nEnd+1; in hasCausedException() [all …]
|
| /AOO42X/main/sc/source/filter/lotus/ |
| H A D | op.cxx | 96 sal_uInt16 nCol, nRow; in OP_Integer() local 100 r >> nFormat >> nCol >> nRow >> nValue; in OP_Integer() 102 if (ValidColRow( static_cast<SCCOL>(nCol), nRow)) in OP_Integer() 105 …pDoc->PutCell( static_cast<SCCOL> (nCol), static_cast<SCROW> (nRow), nTab, pZelle, ( sal_Bool ) sa… in OP_Integer() 108 SetFormat( static_cast<SCCOL> (nCol), static_cast<SCROW> (nRow), nTab, nFormat, 0 ); in OP_Integer() 116 sal_uInt16 nCol, nRow; in OP_Number() local 120 r >> nFormat >> nCol >> nRow >> fValue; in OP_Number() 122 if (ValidColRow( static_cast<SCCOL>(nCol), nRow)) in OP_Number() 126 …pDoc->PutCell( static_cast<SCCOL> (nCol), static_cast<SCROW> (nRow), nTab, pZelle, ( sal_Bool ) sa… in OP_Number() 128 SetFormat( static_cast<SCCOL> (nCol), static_cast<SCROW> (nRow), nTab, nFormat, nDezFloat ); in OP_Number() [all …]
|
| /AOO42X/main/svtools/source/brwbox/ |
| H A D | brwbox1.cxx | 1219 void BrowseBox::RowModified( long nRow, sal_uInt16 nColId ) in RowModified() argument 1229 aRect = Rectangle( Point( 0, (nRow-nTopRow) * GetDataRowHeight() ), in RowModified() 1234 aRect = GetFieldRectPixel( nRow, nColId, sal_False ); in RowModified() 1300 void BrowseBox::RowInserted( long nRow, long nNumRows, sal_Bool bDoPaint, sal_Bool bKeepSelection ) in RowInserted() argument 1304 if (nRow < 0) in RowInserted() 1305 nRow = 0; in RowInserted() 1306 else if (nRow > nRowCount) // maximal = nRowCount in RowInserted() 1307 nRow = nRowCount; in RowInserted() 1317 RowInserted(nRow + i,1,bDoPaint); in RowInserted() 1323 sal_Bool bLastRow = nRow >= nRowCount; in RowInserted() [all …]
|
| /AOO42X/main/sc/inc/ |
| H A D | bigrange.hxx | 38 sal_Int32 nRow; member in ScBigAddress 43 ScBigAddress() : nRow(0), nCol(0), nTab(0) {} in ScBigAddress() 45 : nRow( nRowP ), nCol( nColP ), nTab( nTabP ) {} in ScBigAddress() 47 : nRow( r.nRow ), nCol( r.nCol ), nTab( r.nTab ) {} in ScBigAddress() 49 : nRow( r.Row() ), nCol( r.Col() ), nTab( r.Tab() ) {} in ScBigAddress() 52 sal_Int32 Row() const { return nRow; } in Row() 56 { nCol = nColP; nRow = nRowP; nTab = nTabP; } in Set() 58 void SetRow( sal_Int32 nRowP ) { nRow = nRowP; } in SetRow() 61 void IncRow( sal_Int32 n = 1 ) { nRow += n; } in IncRow() 65 { nColP = nCol; nRowP = nRow; nTabP = nTab; } in GetVars() [all …]
|
| H A D | address.hxx | 145 #define VALIDROW(nRow) (ValidRow(nRow)) argument 147 #define VALIDCOLROW(nCol,nRow) (ValidColRow(nCol,nRow)) argument 148 #define VALIDCOLROWTAB(nCol,nRow,nTab) (ValidColRowTab(nCol,nRow,nTab)) argument 157 inline bool ValidRow( SCROW nRow ) in ValidRow() argument 159 return static_cast<SCROW>(0) <= nRow && nRow <= MAXROW; in ValidRow() 172 inline bool ValidColRow( SCCOL nCol, SCROW nRow ) in ValidColRow() argument 174 return ValidCol( nCol) && ValidRow( nRow); in ValidColRow() 177 inline bool ValidColRowTab( SCCOL nCol, SCROW nRow, SCTAB nTab ) in ValidColRowTab() argument 179 return ValidCol( nCol) && ValidRow( nRow) && ValidTab( nTab); in ValidColRowTab() 187 inline SCROW SanitizeRow( SCROW nRow ) in SanitizeRow() argument [all …]
|
| H A D | column.hxx | 89 SCROW nRow; member 128 sal_Bool Search( SCROW nRow, SCSIZE& nIndex ) const; 129 ScBaseCell* GetCell( SCROW nRow ) const; 130 void Insert( SCROW nRow, ScBaseCell* pCell ); 131 void Insert( SCROW nRow, sal_uLong nFormatIndex, ScBaseCell* pCell ); 132 void Append( SCROW nRow, ScBaseCell* pCell ); 133 void Delete( SCROW nRow ); 138 void SwapCell( SCROW nRow, ScColumn& rCol); 156 sal_Bool HasDataAt(SCROW nRow) const; 157 sal_Bool HasVisibleDataAt(SCROW nRow) const; [all …]
|