Lines Matching refs:nCol1

120 void ScDocument::InsertMatrixFormula(SCCOL nCol1, SCROW nRow1,  in InsertMatrixFormula()  argument
127 PutInOrder(nCol1, nCol2); in InsertMatrixFormula()
150 ScAddress aPos( nCol1, nRow1, nTab1 ); in InsertMatrixFormula()
155 pCell->SetMatColsRows( nCol2 - nCol1 + 1, nRow2 - nRow1 + 1 ); in InsertMatrixFormula()
161 pTab[i]->PutCell(nCol1, nRow1, pCell); in InsertMatrixFormula()
163 …pTab[i]->PutCell(nCol1, nRow1, pCell->CloneWithoutNote(*this, ScAddress( nCol1, nRow1, i), SC_CLON… in InsertMatrixFormula()
169 aRefData.nCol = nCol1; in InsertMatrixFormula()
175 aRefData.CalcRelFromAbs( ScAddress( nCol1, nRow1, nTab1 ) ); in InsertMatrixFormula()
184 pTab[i]->DoColResize( nCol1, nCol2, static_cast<SCSIZE>(nRow2 - nRow1 + 1) ); in InsertMatrixFormula()
191 for (j = nCol1; j <= nCol2; j++) in InsertMatrixFormula()
195 if (j != nCol1 || k != nRow1) // nicht in der ersten Zelle in InsertMatrixFormula()
211 SCCOL nCol1, SCROW nRow1, SCCOL nCol2, SCROW nRow2, in InsertTableOp() argument
214 PutInOrder(nCol1, nCol2); in InsertTableOp()
249 aRef.Set( nCol1, nRow1, nTab1, sal_False, sal_True, sal_True ); in InsertTableOp()
251 nCol1++; in InsertTableOp()
253 rParam.aRefFormulaCell.Col() + nCol1 + 1)); in InsertTableOp()
262 aRef.Set( nCol1, nRow1, nTab1, sal_True, sal_False, sal_True ); in InsertTableOp()
274 aRef.Set( nCol1, nRow1 + 1, nTab1, sal_False, sal_True, sal_True ); in InsertTableOp()
279 aRef.Set( nCol1 + 1, nRow1, nTab1, sal_True, sal_False, sal_True ); in InsertTableOp()
281 nCol1++; nRow1++; in InsertTableOp()
285 ScFormulaCell aRefCell( this, ScAddress( nCol1, nRow1, nTab1 ), aForString, in InsertTableOp()
287 for( j = nCol1; j <= nCol2; j++ ) in InsertTableOp()
400 void ScDocument::DoColResize( SCTAB nTab, SCCOL nCol1, SCCOL nCol2, SCSIZE nAdd ) in DoColResize() argument
403 pTab[nTab]->DoColResize( nCol1, nCol2, nAdd ); in DoColResize()