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

AddTemplateReference() приватный метод

private AddTemplateReference ( PdfIndirectReference template, PdfName name, float a, float b, float c, float d, float e, float f ) : void
template PdfIndirectReference
name PdfName
a float
b float
c float
d float
e float
f float
Результат void
        internal void AddTemplateReference(PdfIndirectReference template, PdfName name, float a, float b, float c, float d, float e, float f)
        {
            if (inText && autoControlTextBlocks) {
                EndText();
            }
            CheckWriter();
            PageResources prs = PageResources;
            name = prs.AddXObject(name, template);
            content.Append("q ");
            content.Append(a).Append(' ');
            content.Append(b).Append(' ');
            content.Append(c).Append(' ');
            content.Append(d).Append(' ');
            content.Append(e).Append(' ');
            content.Append(f).Append(" cm ");
            content.Append(name.GetBytes()).Append(" Do Q").Append_i(separator);
        }
PdfContentByte