XTransform String Property. The transform as a string. ABCpdf .NET PDF Library.

ABCpdf .net

 
   

 

Type Default Read Only Description
[C#] string

[Visual Basic]
String
"1 0 0 1 0 0" No The transform as a string.

 

   

Notes
 

Allows you access to the transform as a string.

The format of the string must be "m11 m12 m21 m22 mX mY".

To transform a point (x, y) to another point (x', y'), the following formula is used:

  x' = (x * m11) + (y * m21) + mX
  y' = (x * m12) + (y * m22) + mY

   

Example
 

None.