Matrix.Equality(Matrix, Matrix) Operator

Definition

Determines whether the two specified Matrix structs are identical.

public:
 static bool operator ==(Windows::UI::Xaml::Media::Matrix matrix1, Windows::UI::Xaml::Media::Matrix matrix2);
public static bool operator == (Windows.UI.Xaml.Media.Matrix matrix1, Windows.UI.Xaml.Media.Matrix matrix2);
static member ( = ) : Windows.UI.Xaml.Media.Matrix * Windows.UI.Xaml.Media.Matrix -> bool
Public Shared Operator == (matrix1 As Matrix, matrix2 As Matrix) As Boolean

Parameters

matrix1
Matrix

The first Matrix struct to compare.

matrix2
Matrix

The second Matrix struct to compare.

Returns

true if matrix1 and matrix2 are identical; otherwise, false.

Remarks

This struct represents the .NET projection of the Windows Runtime (WinRT) Matrix struct. For more information, see Matrix in the UWP API reference.

For more information and examples of this member, see Matrix.Equality in the .NET Framework API reference.

Applies to