Type Default Read Only Description
[C#]
string

[Visual Basic]
String
"1.0000 0.0000 0.0000 1.0000 0.0000 0.0000" 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 * m12) + mX
  y' = (x * m21) + (y * m22) + mY

   

Example
 

None.