iTextSharp.text.pdf.PdfTemplate.SetMatrix C# (CSharp) Метод

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

public SetMatrix ( float a, float b, float c, float d, float e, float f ) : void
a float
b float
c float
d float
e float
f float
Результат void
        public void SetMatrix(float a, float b, float c, float d, float e, float f)
        {
            matrix = new PdfArray();
            matrix.Add(new PdfNumber(a));
            matrix.Add(new PdfNumber(b));
            matrix.Add(new PdfNumber(c));
            matrix.Add(new PdfNumber(d));
            matrix.Add(new PdfNumber(e));
            matrix.Add(new PdfNumber(f));
        }