MatrixTransform Constructors

Definition

Initializes a new instance of the MatrixTransform class.

Overloads

MatrixTransform()

Initializes a new instance of the MatrixTransform class.

MatrixTransform(Matrix)

Initializes a new instance of the MatrixTransform class with the specified transformation matrix.

MatrixTransform(Double, Double, Double, Double, Double, Double)

Initializes a new instance of the MatrixTransform class with the specified transformation matrix values.

MatrixTransform()

Initializes a new instance of the MatrixTransform class.

public:
 MatrixTransform();
public MatrixTransform ();
Public Sub New ()

Applies to

MatrixTransform(Matrix)

Initializes a new instance of the MatrixTransform class with the specified transformation matrix.

public:
 MatrixTransform(System::Windows::Media::Matrix matrix);
public MatrixTransform (System.Windows.Media.Matrix matrix);
new System.Windows.Media.MatrixTransform : System.Windows.Media.Matrix -> System.Windows.Media.MatrixTransform
Public Sub New (matrix As Matrix)

Parameters

matrix
Matrix

The transformation matrix of the new MatrixTransform.

Applies to

MatrixTransform(Double, Double, Double, Double, Double, Double)

Initializes a new instance of the MatrixTransform class with the specified transformation matrix values.

public:
 MatrixTransform(double m11, double m12, double m21, double m22, double offsetX, double offsetY);
public MatrixTransform (double m11, double m12, double m21, double m22, double offsetX, double offsetY);
new System.Windows.Media.MatrixTransform : double * double * double * double * double * double -> System.Windows.Media.MatrixTransform
Public Sub New (m11 As Double, m12 As Double, m21 As Double, m22 As Double, offsetX As Double, offsetY As Double)

Parameters

m11
Double

The value at position (1, 1) in the transformation matrix.

m12
Double

The value at position (1, 2) in the transformation matrix.

m21
Double

The value at position (2, 1) in the transformation matrix.

m22
Double

The value at position (2, 2) in the transformation matrix.

offsetX
Double

The X-axis translation factor, which is located at position (3,1) in the transformation matrix.

offsetY
Double

The Y-axis translation factor, which is located at position (3,2) in the transformation matrix.

Applies to