iTextSharp.text.pdf.PdfContentByte.NewlineText C# (CSharp) Метод

NewlineText() публичный Метод

public NewlineText ( ) : void
Результат void
        public void NewlineText()
        {
            if (!inText && autoControlTextBlocks) {
                BeginText(true);
            }
            if (autoControlTextBlocks && state.xTLM != state.tx) {
                SetTextMatrix(state.aTLM, state.bTLM, state.cTLM, state.dTLM, state.xTLM, state.yTLM);
            }
            state.yTLM -= state.leading;
            content.Append("T*").Append_i(separator);
        }
PdfContentByte