Table of Contents
PdfMatrix Constructor (Single[])

Initializes a new instance of the PdfMatrix class with the specified elements.

Syntax
 public PdfMatrix(
   float[] values
);

Parameters

values
An array of 6 elements.
Remarks

The elements are in the following order:

  1. The value in the first row and first column.
  2. The value in the first row and second column.
  3. The value in the second row and first column.
  4. The value in the second row and second column.
  5. The value in the third row and first column.
  6. The value in the third row and second column.
See Also