RectangleF.Contains

Contains(float, float)

Determines if the specified point is contained within this RectangleF structure.

public bool Contains(float x, float y)
ParameterTypeDescription
xSingleThe x-coordinate of the point to test.
ySingleThe y-coordinate of the point to test.

Return Value

This method returns true if the point defined by x and y is contained within this RectangleF structure; otherwise false.

See Also


Contains(PointF)

Determines if the specified point is contained within this RectangleF structure.

public bool Contains(PointF point)
ParameterTypeDescription
pointPointFThe PointF to test.

Return Value

This method returns true if the point represented by the point parameter is contained within this RectangleF structure; otherwise false.

See Also


Contains(RectangleF)

Determines if the rectangular region represented by rect is entirely contained within this RectangleF structure.

public bool Contains(RectangleF rect)
ParameterTypeDescription
rectRectangleFThe RectangleF to test.

Return Value

This method returns true if the rectangular region represented by rect is entirely contained within the rectangular region represented by this RectangleF; otherwise false.

See Also