NGWS SDK Documentation  

This is preliminary documentation and subject to change.
To comment on this topic, please send us email at ngwssdk@microsoft.com. Thanks!

RectangleF.Intersect (RectangleF, RectangleF)

Creates a RectangleF that represents the intersetion between a and b. If there is no intersection, null is returned.

[Visual Basic]
Overloads Public Shared Function Intersect( _
   ByVal a As RectangleF, _
   ByVal b As RectangleF _
) As RectangleF
[C#]
public static RectangleF Intersect(
   RectangleF a,
   RectangleF b
);
[C++]
public: static RectangleF Intersect(
   RectangleF a,
   RectangleF b
);
[JScript]
public static function Intersect(
   a : RectangleF,
   b : RectangleF
) : RectangleF;

Parameters

a
RectangleF to intersect
b
RectangleF to intersect

Return Value

the insected region

See Also

RectangleF Structure | RectangleF Members | System.Drawing Namespace | RectangleF.Intersect Overload List