Lines Matching refs:nLastCol

324 …void                convertColumnFormat( sal_Int32 nFirstCol, sal_Int32 nLastCol, sal_Int32 nXfId …
550 sal_Int32 nLastCol = ::std::min( rColRange.mnLast, mrMaxApiPos.Column ); in getColumns() local
551 if( (0 <= rColRange.mnFirst) && (rColRange.mnFirst <= nLastCol) ) in getColumns()
553 … getCellRange( CellRangeAddress( getSheetIndex(), rColRange.mnFirst, 0, nLastCol, 0 ) ), UNO_QUERY… in getColumns()
820 sal_Int32 nLastCol = rModel.maRange.mnLast - 1; in setColumnModel() local
821 if( getAddressConverter().checkCol( nFirstCol, true ) && (nFirstCol <= nLastCol) ) in setColumnModel()
824 if( !getAddressConverter().checkCol( nLastCol, true ) ) in setColumnModel()
825 nLastCol = mrMaxApiPos.Column; in setColumnModel()
834 …OSL_ENSURE( (aIt == maColModels.end()) || (nLastCol < aIt->first), "WorksheetGlobals::setColModel … in setColumnModel()
836 nLastCol = ::std::min( nLastCol, aIt->first - 1 ); in setColumnModel()
845 …if( (rnLastMapCol + 1 == nFirstCol) && (nFirstCol <= nLastCol) && aIt->second.first.isMergeable( r… in setColumnModel()
848 rnLastMapCol = nLastCol; in setColumnModel()
853 if( nFirstCol <= nLastCol ) in setColumnModel()
857 maColModels[ nFirstCol ] = ColumnModelRange( rModel, nLastCol ); in setColumnModel()
859 convertColumnFormat( nFirstCol, nLastCol, rModel.mnXfId ); in setColumnModel()
864 void WorksheetGlobals::convertColumnFormat( sal_Int32 nFirstCol, sal_Int32 nLastCol, sal_Int32 nXfI… in convertColumnFormat() argument
866 CellRangeAddress aRange( getSheetIndex(), nFirstCol, 0, nLastCol, mrMaxApiPos.Row ); in convertColumnFormat()
1643 void WorksheetHelper::setDefaultColumnFormat( sal_Int32 nFirstCol, sal_Int32 nLastCol, sal_Int32 nX… in setDefaultColumnFormat() argument
1645 mrSheetGlob.convertColumnFormat( nFirstCol, nLastCol, nXfId ); in setDefaultColumnFormat()