Determines whether the specified object is a SizeF, value identical to this one.
Syntax

[C#]

virtual bool Equals(Object obj);
bool Equals(SizeF s, double epsilon);

[Visual Basic]

Overidable Function Equals(obj As Object) As Boolean
Function Equals(s As SizeF, epsilon As Double) As Boolean
Params
Name Description
obj The object to compare.
s Size for comparison.
epsilon The amount by which coordinates can differ and still be equal.
return True if they are identical, otherwise false.
Notes

None.

Example

None.