Region.Xor
Xor(RectangleF)
Updates this Region to the union minus the intersection of itself with the specified RectangleF structure.
public void Xor(RectangleF rect)
| Parameter | Type | Description |
|---|
| rect | RectangleF | The RectangleF structure to xor with this Region. |
See Also
Xor(Rectangle)
Updates this Region to the union minus the intersection of itself with the specified Rectangle structure.
public void Xor(Rectangle rect)
| Parameter | Type | Description |
|---|
| rect | Rectangle | The Rectangle structure to xor with this Region. |
See Also
Xor(GraphicsPath)
Updates this Region to the union minus the intersection of itself with the specified GraphicsPath.
public void Xor(GraphicsPath path)
Exceptions
| exception | condition |
|---|
| ArgumentNullException | path is null. |
See Also
Xor(Region)
Updates this Region to the union minus the intersection of itself with the specified Region.
public void Xor(Region region)
| Parameter | Type | Description |
|---|
| region | Region | The Region to xor with this Region. |
Exceptions
| exception | condition |
|---|
| ArgumentNullException | region is null. |
See Also