Creates a new RectangleD structure representing the intersection of two RectangleD structures. (The intersection may be empty, in which case Empty is returned.)

Namespace:  C1.C1Preview
Assembly:  C1.C1Report.2 (in C1.C1Report.2.dll)

Syntax

C#
public static RectangleD Intersect(
	RectangleD a,
	RectangleD b
)
Visual Basic
Public Shared Function Intersect ( _
	a As RectangleD, _
	b As RectangleD _
) As RectangleD

Parameters

a
Type: C1.C1Preview..::..RectangleD
The first RectangleD to intersect.
b
Type: C1.C1Preview..::..RectangleD
The second RectangleD to intersect.

Return Value

The newly created RectangleD structure.

See Also