RectangleFContains Method (Single, Single) |
Determines if the specified point is contained within this System.Drawing.RectangleF
structure.
Namespace:
Easymap.AddIn.Common.Graphics
Assembly:
Easymap.AddIn (in Easymap.AddIn.dll) Version: 11.2.0.0
Syntaxpublic bool Contains(
float x,
float y
)
Public Function Contains (
x As Single,
y As Single
) As Boolean
Parameters
- x
- Type: SystemSingle
The x-coordinate of the point to test. - y
- Type: SystemSingle
The y-coordinate of the point to test.
Return Value
Type:
Boolean
This method returns true if the point defined by x and y is contained within
this System.Drawing.RectangleF structure; otherwise false.
See Also