[]
Updates the clip region of this Graphics object to the intersection of the current clip region and the specified Rectangle structure.
public void IntersectClip(Rectangle rectangle)
Type | Name | Description |
---|---|---|
Rectangle | rectangle | Rectangle structure to intersect with the current clip region. |
This method assigns to the Clip property of this Graphics object the area represented by the
intersection of the current clip region and the rectangle specified by the rectangle
parameter.
Updates the clip region of this Graphics object to the intersection of the current clip region and the specified Region object.
public void IntersectClip(Region region)
Type | Name | Description |
---|---|---|
Region | region | Region object to intersect with the current region. |
This method assigns to the Clip property of this Graphics object the area represented by the
intersection of the current clip region and the region specified by the region
parameter.