Home
last modified time | relevance | path

Searched refs:rEndCol (Results 1 – 11 of 11) sorted by relevance

/AOO41X/main/sc/source/core/data/
H A Dtable1.cxx401 sal_Bool ScTable::GetCellArea( SCCOL& rEndCol, SCROW& rEndRow ) const in GetCellArea() argument
416 rEndCol = nMaxX; in GetCellArea()
421 sal_Bool ScTable::GetTableArea( SCCOL& rEndCol, SCROW& rEndRow ) const in GetTableArea() argument
430 rEndCol = nTableAreaX; in GetTableArea()
435 void ScTable::GetLastAttrCell( SCCOL& rEndCol, SCROW& rEndRow ) const in GetLastAttrCell() argument
450 rEndCol = nMaxX; in GetLastAttrCell()
475 sal_Bool ScTable::GetPrintArea( SCCOL& rEndCol, SCROW& rEndRow, sal_Bool bNotes ) const in GetPrintArea() argument
541 rEndCol = nMaxX; in GetPrintArea()
547 SCCOL& rEndCol, sal_Bool /* bNotes */ ) const in GetPrintAreaHor() argument
579 rEndCol = nMaxX; in GetPrintAreaHor()
[all …]
H A Ddocumen2.cxx650 sal_Bool ScDocument::GetPrintArea( SCTAB nTab, SCCOL& rEndCol, SCROW& rEndRow, in GetPrintArea() argument
655 sal_Bool bAny = pTab[nTab]->GetPrintArea( rEndCol, rEndRow, bNotes ); in GetPrintArea()
661 if (aDrawRange.aEnd.Col()>rEndCol) rEndCol=aDrawRange.aEnd.Col(); in GetPrintArea()
669 rEndCol = 0; in GetPrintArea()
675 SCCOL& rEndCol, sal_Bool bNotes ) const in GetPrintAreaHor() argument
679 sal_Bool bAny = pTab[nTab]->GetPrintAreaHor( nStartRow, nEndRow, rEndCol, bNotes ); in GetPrintAreaHor()
685 if (aDrawRange.aEnd.Col()>rEndCol) rEndCol=aDrawRange.aEnd.Col(); in GetPrintAreaHor()
692 rEndCol = 0; in GetPrintAreaHor()
H A Ddocument.cxx651 sal_Bool ScDocument::GetCellArea( SCTAB nTab, SCCOL& rEndCol, SCROW& rEndRow ) const in GetCellArea() argument
655 return pTab[nTab]->GetCellArea( rEndCol, rEndRow ); in GetCellArea()
657 rEndCol = 0; in GetCellArea()
663 sal_Bool ScDocument::GetTableArea( SCTAB nTab, SCCOL& rEndCol, SCROW& rEndRow ) const in GetTableArea() argument
667 return pTab[nTab]->GetTableArea( rEndCol, rEndRow ); in GetTableArea()
669 rEndCol = 0; in GetTableArea()
674 bool ScDocument::ShrinkToDataArea(SCTAB nTab, SCCOL& rStartCol, SCROW& rStartRow, SCCOL& rEndCol, S… in ShrinkToDataArea() argument
691 if (nCol2 < rEndCol) in ShrinkToDataArea()
692 rEndCol = nCol2; in ShrinkToDataArea()
698 if (rStartCol > rEndCol || rStartRow > rEndRow) in ShrinkToDataArea()
[all …]
H A Ddocumen4.cxx420 void ScDocument::GetLastAttrCell( SCTAB nTab, SCCOL& rEndCol, SCROW& rEndRow ) const in GetLastAttrCell() argument
424 pTab[nTab]->GetLastAttrCell( rEndCol, rEndRow ); in GetLastAttrCell()
H A Dtable2.cxx1427 SCCOL& rEndCol, SCROW& rEndRow, in ExtendMerge() argument
1430 if (!(ValidCol(nStartCol) && ValidCol(rEndCol))) in ExtendMerge()
1436 SCCOL nOldEndX = rEndCol; in ExtendMerge()
1439 bFound |= aCol[i].ExtendMerge( i, nStartRow, nOldEndY, rEndCol, rEndRow, bRefresh, bAttrs ); in ExtendMerge()
H A Ddocumen3.cxx2020 SCCOL nStartCol, SCROW nStartRow, SCCOL& rEndCol, SCROW nEndRow ) in ExtendPrintArea() argument
2023 pTab[nTab]->ExtendPrintArea( pDev, nStartCol, nStartRow, rEndCol, nEndRow ); in ExtendPrintArea()
/AOO41X/main/sc/inc/
H A Dtable.hxx416 …sal_Bool GetCellArea( SCCOL& rEndCol, SCROW& rEndRow ) const; // sal_False = leer
417 sal_Bool GetTableArea( SCCOL& rEndCol, SCROW& rEndRow ) const;
418 sal_Bool GetPrintArea( SCCOL& rEndCol, SCROW& rEndRow, sal_Bool bNotes ) const;
420 SCCOL& rEndCol, sal_Bool bNotes ) const;
427 void GetLastAttrCell( SCCOL& rEndCol, SCROW& rEndRow ) const;
431 SCCOL nStartCol, SCROW nStartRow, SCCOL& rEndCol, SCROW nEndRow );
433 void GetDataArea( SCCOL& rStartCol, SCROW& rStartRow, SCCOL& rEndCol, SCROW& rEndRow,
437 SCCOL& rEndCol, SCROW& rEndRow, bool bColumnsOnly ) const;
446 … void LimitChartArea( SCCOL& rStartCol, SCROW& rStartRow, SCCOL& rEndCol, SCROW& rEndRow );
528 SCCOL& rEndCol, SCROW& rEndRow,
H A Ddocument.hxx861 SCCOL& rEndCol, SCROW& rEndRow, const ScMarkData& rMark,
864 SCCOL& rEndCol, SCROW& rEndRow, SCTAB nTab,
954 …ShrinkToDataArea( SCTAB nTab, SCCOL& rStartCol, SCROW& rStartRow, SCCOL& rEndCol, SCROW& rEndRow )…
965 SCCOL& rEndCol, SCROW& rEndRow, bool bColumnsOnly ) const;
968 … SCCOL& rEndCol, SCROW& rEndRow, sal_Bool bIncludeOld, bool bOnlyDown ) const;
969 SC_DLLPUBLIC sal_Bool GetCellArea( SCTAB nTab, SCCOL& rEndCol, SCROW& rEndRow ) const;
970 … SC_DLLPUBLIC sal_Bool GetTableArea( SCTAB nTab, SCCOL& rEndCol, SCROW& rEndRow ) const;
971 SC_DLLPUBLIC sal_Bool GetPrintArea( SCTAB nTab, SCCOL& rEndCol, SCROW& rEndRow,
974 SCCOL& rEndCol, sal_Bool bNotes = sal_True ) const;
982 SC_DLLPUBLIC void GetLastAttrCell( SCTAB nTab, SCCOL& rEndCol, SCROW& rEndRow ) const;
[all …]
/AOO41X/main/connectivity/source/drivers/calc/
H A DCTable.cxx80 void lcl_UpdateArea( const Reference<XCellRange>& xUsedRange, sal_Int32& rEndCol, sal_Int32& rEndRo… in lcl_UpdateArea() argument
98 rEndCol = pData[i].EndColumn > rEndCol ? pData[i].EndColumn : rEndCol; in lcl_UpdateArea()
/AOO41X/main/sc/source/ui/inc/
H A Dviewdata.hxx329 SCCOL& rEndCol, SCROW& rEndRow, SCTAB& rEndTab ) const;
344 SCCOL& rEndCol, SCROW& rEndRow );
/AOO41X/main/sc/source/ui/view/
H A Dviewdata.cxx792 SCCOL& rEndCol, SCROW& rEndRow, SCTAB& rEndTab ) const in GetSimpleArea() argument
802 aRange.GetVars( rStartCol, rStartRow, rStartTab, rEndCol, rEndRow, rEndTab); in GetSimpleArea()
905 SCCOL& rEndCol, SCROW& rEndRow ) in GetFillData() argument
909 rEndCol = nFillEndX; in GetFillData()