Xor
Region.Xor method (1 of 4)
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
Region.Xor method (2 of 4)
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
Region.Xor method (3 of 4)
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
Region.Xor method (4 of 4)
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