Region.Complement
Complement(RectangleF)
Updates this Region to contain the portion of the specified RectangleF structure that does not intersect with this Region.
public void Complement(RectangleF rect)
| Parameter | Type | Description |
|---|
| rect | RectangleF | The RectangleF structure to complement this Region. |
See Also
Complement(Rectangle)
Updates this Region to contain the portion of the specified Rectangle structure that does not intersect with this Region.
public void Complement(Rectangle rect)
| Parameter | Type | Description |
|---|
| rect | Rectangle | The Rectangle structure to complement this Region. |
See Also
Complement(GraphicsPath)
Updates this Region to contain the portion of the specified GraphicsPath that does not intersect with this Region.
public void Complement(GraphicsPath path)
Exceptions
| exception | condition |
|---|
| ArgumentNullException | path isnull. |
See Also
Complement(Region)
Updates this Region to contain the portion of the specified Region that does not intersect with this Region.
public void Complement(Region region)
| Parameter | Type | Description |
|---|
| region | Region | The Region object to complement this Region object. |
Exceptions
| exception | condition |
|---|
| ArgumentNullException | region isnull. |
See Also