Table of Contents

Method IntersectClipRect

Namespace
Alternet.Common
Assembly
Alternet.Common.v9.dll

IntersectClipRect(int, int, int, int)

When implemented by a class, creates a new clipping region from the intersection of the current clipping region and the specified rectangle.

void IntersectClipRect(int x, int y, int width, int height)

Parameters

x int

X-coordinate of the upper-left corner of the rectangle.

y int

Y-coordinate of the upper-left corner of the rectangle.

width int

Width of the rectangle.

height int

Height of the rectangle.

IntersectClipRect(Rectangle)

When implemented by a class, creates a new clipping region from the intersection of the current clipping region and the specified rectangle.

void IntersectClipRect(Rectangle rect)

Parameters

rect Rectangle

Rectangle to intersect.