Region.Equals(Region, Graphics) Method

Definition

Tests whether the specified Region is identical to this Region on the specified drawing surface.

public:
 bool Equals(System::Drawing::Region ^ region, System::Drawing::Graphics ^ g);
public bool Equals (System.Drawing.Region region, System.Drawing.Graphics g);
override this.Equals : System.Drawing.Region * System.Drawing.Graphics -> bool
Public Function Equals (region As Region, g As Graphics) As Boolean

Parameters

region
Region

The Region to test.

g
Graphics

A Graphics that represents a drawing surface.

Returns

true if the interior of region is identical to the interior of this region when the transformation associated with the g parameter is applied; otherwise, false.

Exceptions

g or region is null.

Remarks

The current transformation of the graphics context g is used to compute the region interiors on the drawing surface.

Applies to