RectangleRestrict Method (Rectangle) |
Restricts the rectangle to be within the specified rectangle
Namespace:
Eto.Drawing
Assembly:
Eto (in Eto.dll) Version: 2.5.3-dev
Syntax public void Restrict(
Rectangle rectangle
)
Public Sub Restrict (
rectangle As Rectangle
)
member Restrict :
rectangle : Rectangle -> unit
Parameters
- rectangle
- Type: Eto.DrawingRectangle
Rectangle to restrict this instance to
Remarks
This ensures that the current rectangle's bounds fall within the bounds of the specified rectangle.
It is useful to ensure that the rectangle does not exceed certain limits (e.g. for drawing)
See Also