SizeContains Method (Int32, Int32) |
Gets a value indicating that the specified
x and
y values are within the
Width and
Height of this size
Namespace:
Eto.Drawing
Assembly:
Eto (in Eto.dll) Version: 2.5.3-dev
Syntax public bool Contains(
int x,
int y
)
Public Function Contains (
x As Integer,
y As Integer
) As Boolean
member Contains :
x : int *
y : int -> bool
Parameters
- x
- Type: SystemInt32
X value to test - y
- Type: SystemInt32
Y value to test
Return Value
Type:
BooleanTrue if the
x and
y values are greater than or equal to 0 and less than the Width and Height of this size, respectively. False otherwise
See Also