Matrix.Equals Method

Definition

Overloads

Equals(Object)

Determines whether the specified Object is a Matrix struct that is identical to this Matrix.

Equals(Matrix)

Determines whether the specified Matrix struct is identical to this instance.

Remarks

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

Equals(Object)

Determines whether the specified Object is a Matrix struct that is identical to this Matrix.

public:
 override bool Equals(System::Object ^ o);
public override bool Equals (object o);
override this.Equals : obj -> bool
Public Overrides Function Equals (o As Object) As Boolean

Parameters

o
Object

The Object to compare.

Returns

true if o is a Matrix struct that is identical to this Matrix struct; otherwise, false.

Applies to

Equals(Matrix)

Determines whether the specified Matrix struct is identical to this instance.

public:
 bool Equals(Windows::UI::Xaml::Media::Matrix value);
public bool Equals (Windows.UI.Xaml.Media.Matrix value);
override this.Equals : Windows.UI.Xaml.Media.Matrix -> bool
Public Function Equals (value As Matrix) As Boolean

Parameters

value
Matrix

The instance of Matrix to compare to this instance.

Returns

true if instances are equal; otherwise, false.

Applies to