Lines Matching refs:bSimple

256 double ArrayImpl::GetHorDiagAngle( size_t nCol, size_t nRow, bool bSimple ) const  in GetHorDiagAngle()
261 if( bSimple || !GetCell( nCol, nRow ).IsMerged() ) in GetHorDiagAngle()
279 double ArrayImpl::GetVerDiagAngle( size_t nCol, size_t nRow, bool bSimple ) const in GetVerDiagAngle()
281 double fAngle = GetHorDiagAngle( nCol, nRow, bSimple ); in GetVerDiagAngle()
484 const Style& Array::GetCellStyleLeft( size_t nCol, size_t nRow, bool bSimple ) const in GetCellStyleLeft()
487 if( bSimple ) in GetCellStyleLeft()
505 const Style& Array::GetCellStyleRight( size_t nCol, size_t nRow, bool bSimple ) const in GetCellStyleRight()
508 if( bSimple ) in GetCellStyleRight()
526 const Style& Array::GetCellStyleTop( size_t nCol, size_t nRow, bool bSimple ) const in GetCellStyleTop()
529 if( bSimple ) in GetCellStyleTop()
547 const Style& Array::GetCellStyleBottom( size_t nCol, size_t nRow, bool bSimple ) const in GetCellStyleBottom()
550 if( bSimple ) in GetCellStyleBottom()
568 const Style& Array::GetCellStyleTLBR( size_t nCol, size_t nRow, bool bSimple ) const in GetCellStyleTLBR()
570 return bSimple ? CELL( nCol, nRow ).maTLBR : in GetCellStyleTLBR()
574 const Style& Array::GetCellStyleBLTR( size_t nCol, size_t nRow, bool bSimple ) const in GetCellStyleBLTR()
576 return bSimple ? CELL( nCol, nRow ).maBLTR : in GetCellStyleBLTR()
876 Point Array::GetCellPosition( size_t nCol, size_t nRow, bool bSimple ) const in GetCellPosition()
878 size_t nFirstCol = bSimple ? nCol : mxImpl->GetMergedFirstCol( nCol, nRow ); in GetCellPosition()
879 size_t nFirstRow = bSimple ? nRow : mxImpl->GetMergedFirstRow( nCol, nRow ); in GetCellPosition()
883 Size Array::GetCellSize( size_t nCol, size_t nRow, bool bSimple ) const in GetCellSize()
885 size_t nFirstCol = bSimple ? nCol : mxImpl->GetMergedFirstCol( nCol, nRow ); in GetCellSize()
886 size_t nFirstRow = bSimple ? nRow : mxImpl->GetMergedFirstRow( nCol, nRow ); in GetCellSize()
887 size_t nLastCol = bSimple ? nCol : mxImpl->GetMergedLastCol( nCol, nRow ); in GetCellSize()
888 size_t nLastRow = bSimple ? nRow : mxImpl->GetMergedLastRow( nCol, nRow ); in GetCellSize()
892 Rectangle Array::GetCellRect( size_t nCol, size_t nRow, bool bSimple ) const in GetCellRect()
894 Rectangle aRect( GetCellPosition( nCol, nRow, bSimple ), GetCellSize( nCol, nRow, bSimple ) ); in GetCellRect()
898 if( !bSimple && rCell.IsMerged() ) in GetCellRect()
910 double Array::GetHorDiagAngle( size_t nCol, size_t nRow, bool bSimple ) const in GetHorDiagAngle()
913 return mxImpl->GetHorDiagAngle( nCol, nRow, bSimple ); in GetHorDiagAngle()
916 double Array::GetVerDiagAngle( size_t nCol, size_t nRow, bool bSimple ) const in GetVerDiagAngle()
919 return mxImpl->GetVerDiagAngle( nCol, nRow, bSimple ); in GetVerDiagAngle()