Click or drag to resize

RectangleFRestrict Method (Rectangle, Rectangle)

Restricts the rectangle to be within the restrict rectangle

Namespace:  Eto.Drawing
Assembly:  Eto (in Eto.dll) Version: 2.5.3-dev
Syntax
public static Rectangle Restrict(
	Rectangle rectangle,
	Rectangle restrict
)

Parameters

rectangle
Type: Eto.DrawingRectangle
Rectangle to restrict
restrict
Type: Eto.DrawingRectangle
Rectangle to restrict to

Return Value

Type: Rectangle
A new rectangle restricted to the restrict bounds
Remarks
This ensures that rectangle's bounds fall within the bounds of the specified restrict rectangle It is useful to ensure that the rectangle does not exceed certain limits (e.g. for drawing)
See Also