iTextSharp.text.pdf.PdfContentByte.NewlineShowText C# (CSharp) Method

NewlineShowText() public method

public NewlineShowText ( string text ) : void
text string
return void
        public void NewlineShowText(string text)
        {
            if (!inText && autoControlTextBlocks) {
                BeginText(true);
            }
            if (writer.IsTagged())
                BeginMarkedContentSequence(new PdfStructureElement(GetParentStructureElement(), PdfName.SPAN));
            state.yTLM -= state.leading;
            ShowText2(text);
            content.Append('\'').Append_i(separator);
            if (writer.IsTagged())
                EndMarkedContentSequence();
            state.tx = state.xTLM;
            UpdateTx(text, 0);
        }

Same methods

PdfContentByte::NewlineShowText ( float wordSpacing, float charSpacing, string text ) : void
PdfContentByte