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.Union

Creates a RectangleF that represents the union between a and b.

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

Parameters

a
RectangleF to union
b
RectangleF to union

Return Value

the unioned region.

See Also

RectangleF Structure | RectangleF Members | System.Drawing Namespace