Matrix.Equals Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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)
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
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
Returns
true
if instances are equal; otherwise, false
.