This topic has not yet been rated - Rate this topic

PointF.Equality Operator

Compares two PointF structures. The result specifies whether the values of the X and Y properties of the two PointF structures are equal.

Namespace:  System.Drawing
Assembly:  System.Drawing (in System.Drawing.dll)
public static bool operator ==(
	PointF left,
	PointF right
)

Parameters

left
Type: System.Drawing.PointF
A PointF to compare.
right
Type: System.Drawing.PointF
A PointF to compare.

Return Value

Type: System.Boolean
true if the X and Y values of the left and right PointF structures are equal; otherwise, false.

The following code example demonstrates how to use the Equality operator. To run this example, paste the following code into a Windows Form. Handle the form's Paint event and call opAdditionExample, passing e as PaintEventArgs.


private void OpAdditionExample(PaintEventArgs e)
{
    PointF point1 = new PointF(120.5F, 120F);
    SizeF size1 = new SizeF(120.5F, 30.5F);
    RectangleF rect1 = new RectangleF(point1, size1);
    if (new PointF(rect1.Right, rect1.Bottom) == point1 + size1)
        e.Graphics.DrawString("They are equal", this.Font, Brushes.Black, rect1);
    else
        e.Graphics.DrawString("They are not equal", this.Font, Brushes.Red, rect1);

}


.NET Framework

Supported in: 4, 3.5, 3.0, 2.0, 1.1, 1.0

.NET Framework Client Profile

Supported in: 4, 3.5 SP1

Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows XP SP2 x64 Edition, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
Did you find this helpful?
(1500 characters remaining)
Community Content Add
Annotations FAQ