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.Contains (Single, Single)

Determines if the specfied point is contained within this RectangleF.

[Visual Basic]
Overloads Public Function Contains( _
   ByVal x As Single, _
   ByVal y As Single _
) As Boolean
[C#]
public bool Contains(
   float x,
   float y
);
[C++]
public: bool Contains(
   float x,
   float y
);
[JScript]
public function Contains(
   x : float,
   y : float
) : Boolean;

Parameters

x
X location to test
y
Y location to test

Return Value

true if the point is contained within this RectangleF.

See Also

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