iTextSharp.text.pdf.parser.TextMarginFinder.RenderText C# (CSharp) Méthode

RenderText() public méthode

public RenderText ( TextRenderInfo renderInfo ) : void
renderInfo TextRenderInfo
Résultat void
        public void RenderText(TextRenderInfo renderInfo)
        {
            if (textRectangle == null)
                textRectangle = renderInfo.GetDescentLine().GetBoundingRectange();
            else
                textRectangle.Add(renderInfo.GetDescentLine().GetBoundingRectange());

            textRectangle.Add(renderInfo.GetAscentLine().GetBoundingRectange());
        }