Lines Matching refs:nRowSpan
660 sal_Int32 nRowSpan = xCell->getRowSpan(); in notifyModification() local
666 if( nRowSpan != 1 ) in notifyModification()
667 fprintf( file, " row-span=\"%ld\"", nRowSpan ); in notifyModification()
785 const sal_Int32 nRowSpan = xCell->getRowSpan(); in insertColumns() local
787 merge( nCol, nRow, nColSpan, nRowSpan ); in insertColumns()
955 sal_Int32 nRowSpan = (xCell.is() && !xCell->isMerged()) ? xCell->getRowSpan() : 1; in insertRows() local
956 if( (nRowSpan > 1) && ((nRowSpan + nRow) > nIndex) ) in insertRows()
960 nRowSpan += nCount; in insertRows()
961 merge( nCol, nRow, nColSpan, nRowSpan ); in insertRows()
1025 sal_Int32 nRowSpan = (xCell.is() && !xCell->isMerged()) ? xCell->getRowSpan() : 1; in removeRows() local
1026 if( nRowSpan <= 1 ) in removeRows()
1032 if( (nRow + nRowSpan) > (nIndex + nCount) ) in removeRows()
1042 xTargetCell->merge( xCell->getColumnSpan(), nRowSpan - nRemove ); in removeRows()
1047 else if( nRowSpan > (nIndex - nRow) ) in removeRows()
1050 const sal_Int32 nRemove = ::std::min( nCount, nRow + nRowSpan - nIndex ); in removeRows()
1053 xCell->merge( xCell->getColumnSpan(), nRowSpan - nRemove ); in removeRows()
1188 void TableModel::merge( sal_Int32 nCol, sal_Int32 nRow, sal_Int32 nColSpan, sal_Int32 nRowSpan ) in merge() argument
1194 const sal_Int32 nLastRow = nRow + nRowSpan; in merge()
1208 xOriginCell->merge( nColSpan, nRowSpan ); in merge()