PixelFarm.Drawing.RectangleF.operator C# (CSharp) Method

operator() public static method

Equality Operator
Compares two RectangleF objects. The return value is based on the equivalence of the Location and Size properties of the two RectangleFs.
public static operator ( ) : bool
return bool
        public static bool operator ==(RectangleF left, RectangleF right)
        {
            return (left.X == right.X) && (left.Y == right.Y) &&
                                (left.Width == right.Width) && (left.Height == right.Height);
        }