Region.Union

Union(RectangleF)

Updates this Region to the union of itself and the specified RectangleF structure.

public void Union(RectangleF rect)
ParameterTypeDescription
rectRectangleFThe RectangleF structure to unite with this Region.

Remarks

Union leaves infinite region as infinite.

See Also


Union(Rectangle)

Updates this Region to the union of itself and the specified Rectangle structure.

public void Union(Rectangle rect)
ParameterTypeDescription
rectRectangleThe Rectangle structure to unite with this Region.

Remarks

Union leaves infinite region as infinite.

See Also


Union(GraphicsPath)

Updates this Region to the union of itself and the specified GraphicsPath.

public void Union(GraphicsPath path)
ParameterTypeDescription
pathGraphicsPathThe GraphicsPath to unite with this Region.

Remarks

Union leaves infinite region as infinite.

See Also


Union(Region)

Updates this Region to the union of itself and the specified Region.

public void Union(Region region)
ParameterTypeDescription
regionRegionThe Region to unite with this Region.

Remarks

Union leaves infinite region as infinite.

See Also