Lines Matching refs:nVal

508     sal_Int32 nVal;  in SetAttributes()  local
627 nVal = (pFrm->*fnRect->fnGetTopMargin)(); in SetAttributes()
628 if ( 0 != nVal ) in SetAttributes()
629 … mpPDFExtOutDevData->SetStructureAttributeNumerical( vcl::PDFWriter::SpaceBefore, nVal ); in SetAttributes()
634 nVal = (pFrm->*fnRect->fnGetBottomMargin)(); in SetAttributes()
635 if ( 0 != nVal ) in SetAttributes()
636 … mpPDFExtOutDevData->SetStructureAttributeNumerical( vcl::PDFWriter::SpaceAfter, nVal ); in SetAttributes()
641 nVal = (pFrm->*fnRect->fnGetLeftMargin)(); in SetAttributes()
642 if ( 0 != nVal ) in SetAttributes()
643 … mpPDFExtOutDevData->SetStructureAttributeNumerical( vcl::PDFWriter::StartIndent, nVal ); in SetAttributes()
648 nVal = (pFrm->*fnRect->fnGetRightMargin)(); in SetAttributes()
649 if ( 0 != nVal ) in SetAttributes()
650 … mpPDFExtOutDevData->SetStructureAttributeNumerical( vcl::PDFWriter::EndIndent, nVal ); in SetAttributes()
658 nVal = rSpace.GetTxtFirstLineOfst(); in SetAttributes()
659 if ( 0 != nVal ) in SetAttributes()
660 … mpPDFExtOutDevData->SetStructureAttributeNumerical( vcl::PDFWriter::TextIndent, nVal ); in SetAttributes()
698 nVal = (pFrm->Frm().*fnRect->fnGetWidth)(); in SetAttributes()
699 mpPDFExtOutDevData->SetStructureAttributeNumerical( vcl::PDFWriter::Width, nVal ); in SetAttributes()
704 nVal = (pFrm->Frm().*fnRect->fnGetHeight)(); in SetAttributes()
705 mpPDFExtOutDevData->SetStructureAttributeNumerical( vcl::PDFWriter::Height, nVal ); in SetAttributes()
723 nVal = pThisCell->GetTabBox()->getRowSpan(); in SetAttributes()
724 if ( nVal > 1 ) in SetAttributes()
725 … mpPDFExtOutDevData->SetStructureAttributeNumerical( vcl::PDFWriter::RowSpan, nVal ); in SetAttributes()
743 nVal = std::distance( aLeftIter, aRightIter ); in SetAttributes()
744 if ( nVal > 1 ) in SetAttributes()
745 … mpPDFExtOutDevData->SetStructureAttributeNumerical( vcl::PDFWriter::ColSpan, nVal ); in SetAttributes()
803 nVal = rInf.GetFont()->GetEscapement(); in SetAttributes()
804 if ( nVal > 0 ) nVal = 33; in SetAttributes()
805 else if ( nVal < 0 ) nVal = -33; in SetAttributes()
807 if ( 0 != nVal ) in SetAttributes()
809 nVal = nVal * pPor->Height() / 100; in SetAttributes()
810 … mpPDFExtOutDevData->SetStructureAttributeNumerical( vcl::PDFWriter::BaselineShift, nVal ); in SetAttributes()