Intersect()

Region::Intersect(const RectangleF&) method

Replaces the region represented by the current object with the result of intersection of this region and a region defined by the specified rectangle.

void System::Drawing::Region::Intersect(const RectangleF &rect)

Arguments

ParameterTypeDescription
rectconst RectangleF&A rectangle that defines a region to intersect this region with

Region::Intersect(const Rectangle&) method

Replaces the region represented by the current object with the result of intersection of this region and a region defined by the specified rectangle.

void System::Drawing::Region::Intersect(const Rectangle &rect)

Arguments

ParameterTypeDescription
rectconst Rectangle&A rectangle that defines a region to intersect this region with

Region::Intersect(const SharedPtr<Drawing2D::GraphicsPath>&) method

Replaces the region represented by the current object with the result of intersection of this region and a region defined by the specified path.

void System::Drawing::Region::Intersect(const SharedPtr<Drawing2D::GraphicsPath> &path)

Arguments

ParameterTypeDescription
pathconst SharedPtr<Drawing2D::GraphicsPath>&A path that defines a region to intersect this region with

Region::Intersect(const SharedPtr<Region>&) method

Replaces the region represented by the current object with the result of intersection of this region and the specified region.

void System::Drawing::Region::Intersect(const SharedPtr<Region> &region)

Arguments

ParameterTypeDescription
regionconst SharedPtr<Region>&A region to intersect this region with

See Also